export interface CheckboxProps {
    label: string;
    name: string;
    id?: string;
    checked: boolean;
    handleChange: (e: any) => void;
}
declare function Checkbox(props: CheckboxProps): import("react/jsx-runtime").JSX.Element;
export default Checkbox;
