import { FunctionComponent } from 'react';
export declare type CheckboxProps = {
    id?: string;
    disabled?: boolean;
    checked?: boolean;
    indeterminate?: boolean;
    onChange?: (status: boolean) => void;
};
export declare const Checkbox: FunctionComponent<CheckboxProps>;
