import { FunctionComponent } from 'react'; type Props = { setValue: (value: boolean) => void; value: boolean; }; export declare const PreferenceSwitch: FunctionComponent; export {};