import { ITtsProvider, TtsSynthesisOptions, TtsSynthesisResult } from '../../../modules/buddy/platforms/tts-provider.platform'; import { ConfigService } from '../../../modules/config/services/config.service'; export declare class OpenAiTtsProvider implements ITtsProvider { private readonly configService; private readonly logger; constructor(configService: ConfigService); getType(): string; getName(): string; getDescription(): string; isConfigured(pluginConfig: Record): boolean; synthesize(text: string, options?: TtsSynthesisOptions): Promise; private getPluginConfig; }