import { EnumerationCombo, Input } from '@judo/model-api'; export interface EnumerationComboOption { value: string; label: string; } export interface EnumerationComboComponentProps { element: EnumerationCombo | Input; readOnly?: boolean; value?: string; onChange?: (value: string) => void; error?: string; disabled?: boolean; options?: EnumerationComboOption[]; /** When true, allows empty selection (clearable). @default false */ nullable?: boolean; judoClassName?: string; } /** * Enumeration combo component using MUI Autocomplete. * Provides type-to-search filtering matching the template's Autocomplete pattern. */ export declare function EnumerationComboComponent({ element, readOnly, value, onChange, error, disabled, options, nullable, judoClassName, }: EnumerationComboComponentProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=EnumerationComboComponent.d.ts.map