export interface SpeechMarkdownRuntimeConfig {
    enabled?: boolean;
}
export declare function configureSpeechMarkdown(options?: SpeechMarkdownRuntimeConfig): void;
export declare class SpeechMarkdownConverter {
    private speechMarkdownInstance;
    constructor();
    toSSML(markdown: string, platform?: string): Promise<string>;
    isSpeechMarkdown(text: string): boolean;
    getAvailablePlatforms(): string[];
}
export declare function toSSML(markdown: string, platform?: string): Promise<string>;
export declare function isSpeechMarkdown(text: string): boolean;
export declare function getAvailablePlatforms(): string[];
