import { InputCheckboxProps } from '../../common/components/input-checkbox/InputCheckbox'; import { BaseInputFieldProps } from '../../common/types/input'; export interface CheckboxProps extends InputCheckboxProps, Omit { } /** * controlled * uncontrolled * * A `` component to be used in forms.
* It extends the interface of native html `` element. * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/61962431a09c0951b70d343a) 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 Checkbox: import("react").ForwardRefExoticComponent>; export default Checkbox;