import * as React from 'react';
declare type CheckboxProps = {
    checked: boolean;
    isIndeterminate?: boolean;
    onChange: (event: React.SyntheticEvent) => void;
};
export declare const Checkbox: React.FC<CheckboxProps>;
export {};
