import * as React from "react";
import "./styles/toggleButton.css";
interface Props {
    volume: number;
    alwayShow: boolean;
    onVolumeChange: (val: number) => void;
}
export declare const VolumeControl: React.FC<Props>;
export {};
