export type SearchResultItem = { text: string; detailText?: string; }; export type SearchTextUpdatedEvent = { requestId: string; searchText: string; }; export type SearchResultSelectedEvent = { text: string; detailText: string; }; //# sourceMappingURL=search.types.d.ts.map