import React from 'react';
export declare type CheckboxProps = {
    label: string;
    checked?: boolean;
    className?: string;
    onChange: (newValue: boolean) => void;
    isSelectAll?: boolean;
    children?: React.ReactChild;
    onClick?: (event: React.SyntheticEvent<HTMLDivElement>) => void;
    disabled?: boolean;
    'data-testid'?: string;
};
export declare const Checkbox: React.FunctionComponent<CheckboxProps>;
