import { EventParams } from "./types"; export declare function insertCustomerIOScript(): void; export declare const generateUserId: () => string; export declare const getUserId: () => string; export declare const getCurrentParams: () => any; export declare const storeGeoParam: () => void; export declare const initialLoginEvent: (trackEvent: (eventName: string, properties?: EventParams, services?: { ga?: boolean; mixpanel?: boolean; customerIO?: boolean; }) => void) => void; export declare const setProfileId: (profileId: string) => void; export declare const getProfileId: () => string | undefined; export declare const resetProfileId: () => void; export declare const setProfileEmail: (email: string) => void; export declare const getProfileEmail: () => string | undefined; export declare const resetProfileEmail: () => void; export declare const getLastListNameAndIndex: () => { listName: string | null; index: string | null; };