import React from 'react';
declare type CheckboxProps = {
    checked: boolean;
    name: string;
    label?: string;
    color?: 'primary' | 'secondary' | 'default' | undefined;
    onChange?: (event: React.ChangeEvent<HTMLInputElement>, checked: boolean) => void;
};
export default function Checkbox({ checked, name, label, color, onChange }: CheckboxProps): JSX.Element;
export {};
