import React, { ReactNode } from 'react'; export interface SuggestionsContextValue { onOfferClicked: (offerId: string, targetUrl?: string) => void; } export interface SuggestionsProviderProps { children: ReactNode; onOfferClicked: (offerId: string, targetUrl?: string) => void; } export declare const SuggestionsProvider: React.FC; export declare const useSuggestionsContext: () => SuggestionsContextValue; //# sourceMappingURL=SuggestionsContext.d.ts.map