/// <reference types="react" />
/// <reference types="react" />
import { CheckboxGroupProps } from '../checkbox';
import { FieldElement, FieldElementProps } from '../field';
export type CheckboxFieldProps = Omit<FieldElementProps, 'onChange'> & CheckboxGroupProps;
export default class CheckboxField extends FieldElement<CheckboxFieldProps> {
    static displayName: string;
    renderPreview(value: any): JSX.Element;
    renderControl(): JSX.Element;
}
