import * as React from 'react';

interface CheckboxProps {
    checked?: boolean | 'indeterminate';
    defaultChecked?: boolean;
    onCheckedChange?(v: boolean | 'indeterminate'): void;
    disabled?: boolean;
    id?: string;
    'aria-label'?: string;
    'aria-describedby'?: string;
    className?: string;
}
declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLButtonElement>>;

export { Checkbox, type CheckboxProps };
