import { ReactNode } from 'react'; export declare const getTrackingIdHelper: (data: string, component: string, scope: string) => Promise; export interface TrackingProviderContextProps { scope: string; getTrackingId: (data: string, component: string) => Promise; optOut: boolean; } export interface TrackingProviderProps { children: ReactNode; scope: string; optOut?: boolean; } export declare const TrackingContext: import('react').Context;