import * as CheckboxPrimitive from '@radix-ui/react-checkbox'; interface Props extends React.HTMLAttributes { name?: string; checked: boolean | 'indeterminate'; defaultChecked?: boolean; disabled?: boolean; onCheckedChange?: (checked: CheckboxPrimitive.CheckedState) => void; renderIcon?: (checked: boolean | 'indeterminate', fallback: React.ReactNode) => React.ReactNode; } export declare const Checkbox: import("react").ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Checkbox.d.ts.map