import { ReactElement } from 'react'; import { BooleanProps } from './Boolean'; /** Props for {@link Checkbox}. */ export interface CheckboxProps extends Omit { } /** A boolean input drawn as a checkbox. Use it for a choice the user then submits. */ export declare const Checkbox: (props: CheckboxProps) => ReactElement; //# sourceMappingURL=Checkbox.d.ts.map