export interface BugsterConfig {
    apiKey: string;
    endpoint?: string;
    batchSize?: number;
    flushInterval?: number;
    sessionTimeout?: number;
    persistence?: 'cookie' | 'localStorage' | 'memory';
    cookieDomain?: string;
    crossSubdomainCookie?: boolean;
    secureCookie?: boolean;
    disablePersonalization?: boolean;
    capturePageview?: boolean;
    capturePageleave?: boolean;
    captureUtm?: boolean;
    captureReferrer?: boolean;
    inputDebounceTime?: number;
}
export interface ElementData {
    elementType: string;
    elementText: string;
    elementAttributes: Record<string, string>;
}
