import React from 'react';
import { AnalyticsClient } from '../../core/AnalyticsClient';
import { AnalyticsConfig } from '../../types';
interface AnalyticsContextType {
    client: AnalyticsClient | null;
    isReady: boolean;
}
export declare const AnalyticsContext: React.Context<AnalyticsContextType>;
interface AnalyticsProviderProps {
    config: AnalyticsConfig;
    children: React.ReactNode;
}
export declare function AnalyticsProvider({ config, children }: AnalyticsProviderProps): import("react/jsx-runtime").JSX.Element;
export declare function useAnalyticsContext(): AnalyticsContextType;
export {};
