import { EnumerationRadio, Input } from '@judo/model-api'; export interface EnumerationRadioComponentProps { element: EnumerationRadio | Input; readOnly?: boolean; value?: string; onChange?: (value: string) => void; error?: string; disabled?: boolean; options?: Array<{ value: string; label: string; }>; /** Layout orientation of radio buttons. @default "vertical" */ orientation?: "horizontal" | "vertical"; /** When true, allows de-selection by clicking a selected radio. @default false */ nullable?: boolean; } /** * Enumeration radio group component. */ export declare function EnumerationRadioComponent({ element, readOnly, value, onChange, error, disabled, options, orientation, nullable, }: EnumerationRadioComponentProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=EnumerationRadioComponent.d.ts.map