export interface Option { label: string; value: string; description: string; selected: boolean; disabled: boolean; } export interface InternalOption extends Option { index: number; } export type SearchMethod = 'startsWithPerTerm' | 'startsWith' | 'contains' | 'fuzzy'; //# sourceMappingURL=types.d.ts.map