/** * React hook that will produce suggestions from a list of items * based on a provided search term. */ export declare const useSuggestionEngine: (items: T[], searchTerm: string, options?: UseSuggestionEngineOptions) => { suggestedItems: T[]; }; interface UseSuggestionEngineOptions { isCaseSensitive?: boolean; searchableFields?: T extends string ? undefined : (keyof T)[]; } /** Required for doc-sites prop tables to be generated. */ export declare const useSuggestionEngineOptionsTable: { isCaseSensitive: { defaultValue: boolean; description: string; name: string; required: boolean; type: string; }; searchableFields: { description: string; name: string; required: boolean; type: string; }; }; export {};