import { CONSENT_ACTION, CONSENT_TYPE } from '../enums';
export declare const USER_SESSION_DATA: {
    ccpa: {
        ccpaString: string;
        timestamp: number;
    };
    consents: {
        action: CONSENT_ACTION;
        consentId: string;
        settingsVersion: string;
        status: boolean;
        templateId: string;
        timestamp: string;
        updatedBy: CONSENT_TYPE;
    }[];
    controllerId: string;
    language: string;
    tcf: {
        acString: string;
        tcString: string;
        timestamp: number;
        vendors: (number | number[])[][];
    };
};
