export interface SayPayload {
    type: "say";
    /** The text for the assistant to say */
    text: string;
    /** Optional configuration to make the turn interruptible or not interruptible */
    interruptible?: boolean | undefined;
}
