import { h } from 'preact';
export default function VolumeButton({ muted, onClick }: {
    muted: any;
    onClick: any;
}): h.JSX.Element;
