/** @format */
interface EditableSwitchProps {
    value: boolean;
    onChange: (value: boolean) => void;
    label: string;
}
declare const EditableSwitch: ({ value, onChange, label }: EditableSwitchProps) => import("react/jsx-runtime").JSX.Element;
export default EditableSwitch;
