import { TemplateSoundTypes } from './types/TemplateSoundTypes';
import { ISound } from './interfaces';
export declare class Sound {
    sounds: ISound[];
    isUsedStandardSound: boolean;
    constructor();
    getSounds(text: string | null, userSound?: TemplateSoundTypes | null): Promise<any>;
}
