import { BaseInputFieldProps } from '../../common/types/input'; import { SwitchControlProps } from '../switch/SwitchControl'; export interface SwitchProps extends Omit, SwitchControlProps { } /** * controlled * uncontrolled * * The `` component renders a toggle button that toggles a single setting on or off.
* It extends the interface of native html `` element. * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/folder/619626a76b610a6e74788d92) for design principles.
* See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox) for further information about the element and related attributes. */ declare const Switch: import("react").ForwardRefExoticComponent>; export default Switch;