import { TrackedElementsWithListenersType } from '../autoTrackingHandler'; import { TrackingEvent } from '../commands/events'; export declare const getAutoTrackingSettings: (websiteId: string) => Promise; /** * Creates a custom event on the API */ export declare function createTrackingEvent(websiteKey: string, sessionKey: string, visitKey: string, pageUrl: string, event: TrackingEvent): Promise; export declare function sendOutgoingTrafficEvent(outgoingUrl: string): Promise;