declare class audioCtrl {
    private _videoBox;
    private _muted;
    private _onMutedChange?;
    constructor(videoBox: Element, muted?: boolean, onMutedChange?: Function);
    setState(): boolean;
    setMuted(muted: boolean): boolean;
}
export default audioCtrl;
