import { BaseInputProps } from '../../common/types/input'; import { ChangeEvent } from 'react'; export interface SwitchControlProps extends Omit { /** Callback that will fire anytime the state of the checkbox changes. */ onChange?: (event: ChangeEvent, checked: boolean) => void; } declare const SwitchControl: import("react").ForwardRefExoticComponent>; export default SwitchControl;