export interface Profile { displayName: string | null; id: string | null; email: string | null; identityName: string | null; isAuthenticated: boolean; objectId: string | null; userId: string | null; scopes: (string | null)[]; claims: { key: any; value: any; }[]; authenticationType: string | null; } export declare const defaultProfile: Profile; //# sourceMappingURL=Glow.Core.Profiles.d.ts.map