import type { GetSearchDidYouMeanQuery } from '@farfetch/blackout-client'; import type { UseSearchDidYouMeanOptions } from './types/index.js'; declare const useSearchDidYouMean: (query: GetSearchDidYouMeanQuery, options?: UseSearchDidYouMeanOptions) => { error: import("@farfetch/blackout-client").BlackoutError | null | undefined; isLoading: boolean | undefined; isFetched: boolean; data: import("@farfetch/blackout-client").SearchDidYouMeanSuggestion[] | null | undefined; actions: { fetch: (query: GetSearchDidYouMeanQuery, config?: import("@farfetch/blackout-client").Config | undefined) => Promise; reset: () => void; }; }; export default useSearchDidYouMean;