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