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