export declare type UserProps = Record; export declare type EventProps = Record; /** @hidden Analytics service, for tracking events. */ export interface Analytics { /** Track an event. */ track(name: string, props?: EventProps): void; /** Add custom properties for the user. */ setUserProperties(props: UserProps): void; }