///
import { RecordElementErrorType, RecordElementPreviewFormatType } from '../shared/types';
import { RecordCheckBoxElementChoiceType } from './types';
export declare const ChoiceContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string;
export declare const CheckBoxForm: ({ value, choices, name, inputRef, nonCheckedValue, previewFormat, error, onChange, onBlur, onFocus, isEditing, disabled, }: {
value: V[];
choices: RecordCheckBoxElementChoiceType[];
name: string;
inputRef?: import("react").Ref | undefined;
nonCheckedValue: string;
previewFormat?: RecordElementPreviewFormatType | undefined;
error?: RecordElementErrorType | undefined;
onChange?: ((choice: RecordCheckBoxElementChoiceType, checked: boolean) => void) | undefined;
onBlur?: (() => void) | undefined;
onFocus?: (() => void) | undefined;
isEditing: boolean;
disabled?: boolean | undefined;
}) => JSX.Element;