import { ChangeEvent, InputHTMLAttributes } from 'react';
export type Props = {
/**
* Label displayed next to the checkbox.
* Use only for standalone checkboxes (not inside a FormGroup).
* When inside a FormGroup, set the label on FormGroup's `label` prop instead.
*/
label?: string;
value?: string;
checked?: boolean;
disabled?: boolean;
onChange?: (e: ChangeEvent) => void;
} & InputHTMLAttributes;
declare const Checkbox: import("react").ForwardRefExoticComponent<{
/**
* Label displayed next to the checkbox.
* Use only for standalone checkboxes (not inside a FormGroup).
* When inside a FormGroup, set the label on FormGroup's `label` prop instead.
*/
label?: string;
value?: string;
checked?: boolean;
disabled?: boolean;
onChange?: (e: ChangeEvent) => void;
} & InputHTMLAttributes & import("react").RefAttributes>;
export { Checkbox };
//# sourceMappingURL=Checkbox.component.d.ts.map