export declare const useSpeech: ({ isMuteSpeech, }: {
    isMuteSpeech?: boolean | undefined;
}) => {
    speak: (string: string, voice?: number) => void;
    cancelSpeaking: any;
};
