import { BasicFieldProps } from './types'; import type * as React from 'react'; export type CheckedState = boolean | 'indeterminate'; export type FieldCheckboxProps = BasicFieldProps & { checked?: CheckedState; onChange?: (checked: CheckedState) => void; ref?: React.Ref; }; export declare const FieldCheckbox: React.FC; //# sourceMappingURL=FieldCheckbox.d.ts.map