type SoundControls = { mute: () => void; unmute: () => void; muted: boolean; }; export declare function useSoundControls(): SoundControls; export {};