/// import type { CheckboxProps } from '@toptal/picasso-checkbox'; import type { FieldProps } from '../Field'; declare type CheckboxValue = CheckboxProps['value'] | CheckboxProps['checked']; declare type CheckboxFormProps = Omit & { required?: boolean; }; declare type CheckboxWithoutGroup = CheckboxFormProps & FieldProps; declare type CheckboxInGroup = CheckboxFormProps & { name?: string; }; export declare type Props = CheckboxWithoutGroup | CheckboxInGroup; export declare const Checkbox: { ({ name, value, required, label, defaultValue, ...restProps }: Props): JSX.Element; displayName: string; }; export default Checkbox; //# sourceMappingURL=Checkbox.d.ts.map