import { DataObject } from '@openhps/core'; export declare class SolidProfileObject extends DataObject { firstName: string; lastName: string; private _formattedName; nickname?: string; picture?: string; /** * OpenID Issuer */ oidcIssuer: string; /** * Session Identifier */ sessionId: string; constructor(webId?: string, displayName?: string); /** * Unique WebID */ get webId(): string; set webId(value: string); get name(): string; set name(name: string); /** * Get the profile document URL without trailing hashtag * @returns {URL} Profile URL */ get profileDocumentUrl(): URL; } //# sourceMappingURL=SolidProfileObject.d.ts.map