export interface ToggleSliderInputProps { name?: string; disabled?: boolean; title?: string; /** `value` and `onChange` are optional because we want to be able to use the control in an uncontrolled manner as well (for example, in forms) */ value?: boolean; onChange?: (value: boolean) => void; defaultChecked?: boolean; } /** @remarks Exported for use in Drawer */ declare const _default: import("react").NamedExoticComponent; export default _default;