export { default as speech } from "./speech/speech";
export { default as getVoices } from "./get-voices/get-voices";
export { SpeechOptions } from "./speech/speech";
export type Voice = {
    sapi: number | null;
    name: string;
};
