/// import { FieldInputProps } from 'formik'; export interface ICheckboxField { label: string | number | JSX.Element; field?: FieldInputProps; } interface IOtherProps { [key: string]: any; } export declare const Checkbox: ({ label, field, selectOptions, theme, setFieldValue, disableDropdown, setPhoneValidationIsLoading, defaultCountry, required, uniqueId, dateFormat, datePlaceholder, isCountryCodeEditable, ...rest }: ICheckboxField & IOtherProps) => JSX.Element; export {};