export declare const init: (apiKey: string) => void; export declare const identify: (key: string, value: any) => Promise; export declare const identifyOnce: (key: string, value: any) => Promise; export declare const setUserId: (userId: string) => Promise; export declare const resetUserId: () => Promise; export declare const track: (eventName: string, data: any) => Promise; export declare const setGroup: (group: string, value: string | string[]) => Promise;