import { YandexRequest } from './YandexRequest';
import { IYandexCheckOutPlace, IYandexRequestDownloadSound } from './interfaces';
export declare class YandexSoundRequest extends YandexRequest {
    private readonly STANDARD_URL;
    skillId: string | null;
    constructor(oauth?: string | null, skillId?: string | null);
    private _getSoundsUrl;
    checkOutPlace(): Promise<IYandexCheckOutPlace | null>;
    downloadSoundFile(soundDir: string): Promise<IYandexRequestDownloadSound | null>;
    getLoadedSounds(): Promise<IYandexRequestDownloadSound[] | null>;
    deleteSound(soundId: string): Promise<string | null>;
    deleteSounds(): Promise<boolean>;
}
