import React, { ReactNode } from 'react'; export interface CheckboxProps { className?: string; checked?: boolean; disabled?: boolean; /** * Used to set an individual checkbox to an inbetween state and sets `indeterminate` accordingly on the native * input control. Toggling logic is left up to the parent component */ isIndeterminate?: boolean; name?: string; value: string; children?: ReactNode; onClick?(checked: boolean): void; onChange?(checked: boolean): void; } export declare const CheckBox: React.ForwardRefExoticComponent>; //# sourceMappingURL=CheckBox.d.ts.map