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