export declare function useTracking(): {
    trackEvent: (eventName: string, properties?: Record<string, any>) => void;
    trackPageView: (path?: string, title?: string, properties?: Record<string, any>) => void;
    identifyUser: (userId: string, properties?: Record<string, any>) => void;
};
