import TinkoffApi from './TinkoffApi.js'; import { ListVoicesRequest } from './tts/ListVoicesRequest'; import { ListVoicesResponses__Output } from './tts/ListVoicesResponses'; import { SynthesizeSpeechRequest } from './tts/SynthesizeSpeechRequest'; import { SynthesizeSpeechResponse__Output } from './tts/SynthesizeSpeechResponse'; export { SynthesizeSpeechRequest, ListVoicesRequest, }; export default class TinkoffTextToSpeech extends TinkoffApi { constructor(issuer: string, subject: string, accessKeyId: string, secretAccessKey: string); synthesize(params: SynthesizeSpeechRequest): Promise; listVoices(params: ListVoicesRequest): Promise; /** * Streaming synthesis. */ streamingSynthesize(params: SynthesizeSpeechRequest): Promise; }