import { default as React } from 'react';
export interface CheckboxProps {
    label?: string | React.ReactNode;
    checked: boolean;
    className?: string;
    id?: string;
    onChange: (checked: boolean) => void;
    disabled?: boolean;
    required?: boolean;
    name?: string;
    "aria-label"?: string;
    "aria-describedby"?: string;
}
export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
