import React__default from 'react'; interface FormCheckboxProps { id?: string; name: string; label?: string; required?: boolean; disabled?: boolean; checked?: boolean; onCheckedChange?: (checked: boolean) => void; classNames?: { wrapper?: string; label?: string; checkbox?: string; }; } declare function FormCheckbox({ id, name, label, required, disabled, checked, onCheckedChange, classNames, }: FormCheckboxProps): React__default.JSX.Element; export { FormCheckbox, type FormCheckboxProps };