interface CustomTraits { [key: string]: string | Date | number; } declare class User { readonly userId?: string; readonly deviceId?: string; readonly customTraits?: CustomTraits; constructor(init: User); } export { type CustomTraits, User };