/** * Internal dependencies */ import { designWithAiStateMachineContext } from '../types'; export const ToneOfVoice = ( { sendEvent, context, }: { sendEvent: ( event: { type: 'TONE_OF_VOICE_COMPLETE' } ) => void; context: designWithAiStateMachineContext; } ) => { return (

Tone of Voice

{ JSON.stringify( context ) }
); };