/** * Internal option and value type passed directly to the Autocomplete component */ export declare type Option = { value: T; label: string; disabled?: boolean; };