import React from "react"; interface Props { } interface State { soundEnabled: boolean; } export declare class SoundSwitch extends React.PureComponent { static displayName: string; private readonly soundEnabledKey; constructor(props: Props); toggleSoundSwitch: () => void; render(): React.JSX.Element; } export {};