/**
 * Payload to send text for synthesis to an existing context.
 */
export interface SendTextMulti {
    /** Text to synthesize. Should end with a single space. */
    text: string;
    /** The target context_id for this text. */
    contextId?: string;
    /** If true, flushes the audio buffer for the specified context. If false, the text will be appended to the buffer to be generated. */
    flush?: boolean;
}
