export declare class User {
    private _identity;
    private _displayName;
    constructor(_identity: string, _displayName: string);
    get identity(): string;
    get displayName(): string;
}
