type EventTrackerConfig = {
    apiKey: string;
    endpoint: string;
    autoCapture?: boolean;
};
declare class EventTracker {
    private static config;
    static init(config: EventTrackerConfig): void;
    private static setupAutoCapture;
    private static handleClick;
    private static capturePageView;
    static sendEvent(data: Record<string, any>): void;
}
export default EventTracker;
