import { ActionEvent, Parameter, ActionEventInterface, SoundActionPlaySound } from "./../index";
export interface SoundActionInterface extends ActionEventInterface {
    playSound?: SoundActionPlaySound;
}
export declare class SoundAction extends ActionEvent implements SoundActionInterface, Parameter {
    playSound?: SoundActionPlaySound;
    constructor(data: any);
    static getPlaySoundDescription(): string;
    static fromJson(data: any): SoundAction;
    toJson(): any;
    clone(): SoundAction;
}
