import React from 'react'; export type SearchSessionContextValue = { searchSessionId: string; refreshSearchSessionId: () => void; }; export declare const SearchSessionContext: React.Context; export declare const SearchSessionProvider: ({ children }: { children: React.ReactNode; }) => React.JSX.Element; export declare function useSearchSession(): SearchSessionContextValue;