/** * useSearch Hook * Search memories with debouncing */ import type { UseSearchOptions, UseSearchResult } from '../types'; /** * Hook for searching memories with debouncing * * @example * ```tsx * function SearchScreen() { * const { results, isSearching, error, search, clearResults } = useSearch({ * debounceMs: 300, * limit: 10, * }); * * return ( * * * {isSearching && } * {error && Error: {error.message}} * } * /> * * ); * } * ``` */ export declare function useSearch(options?: UseSearchOptions): UseSearchResult; export default useSearch; //# sourceMappingURL=useSearch.d.ts.map