export declare const createDependency: {
    (): void;
    EventModule(): {
        interactor: EventInteractor;
    };
};
type EventInteractor = {
    trackEvent(category: string, semanticAttributes?: Record<string, any>, customAttributes?: Record<string, any>): void;
};
export type EventModule = ReturnType<typeof createEventModule>;
export declare const createEventModule: () => {
    trackEvent: (category: string, semanticAttributes?: Record<string, any>, customAttributes?: Record<string, any>) => void;
};
export {};
