import { BaseAPIRequestFactory } from './baseapi.js'; import { Configuration } from '../configuration.js'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http.js'; export declare class TTSServiceApiRequestFactory extends BaseAPIRequestFactory { listTtsBuiltinSpeakers(_options?: Configuration): Promise; playSample(speakerType: string, speaker: string, _options?: Configuration): Promise; speakMessage(messageId: number, _options?: Configuration): Promise; } export declare class TTSServiceApiResponseProcessor { listTtsBuiltinSpeakersWithHttpInfo(response: ResponseContext): Promise>>; playSampleWithHttpInfo(response: ResponseContext): Promise>; speakMessageWithHttpInfo(response: ResponseContext): Promise>; }