export interface User { id: string; isGuest?: boolean; name?: string; avatar?: string; } export declare const createAnonymousGuest: () => { isGuest: boolean; id: string; }; //# sourceMappingURL=User.d.ts.map