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