import { type Facade } from '../../facade/facade.js';
import { type UserIdentitySchema } from '../../../../data/schema/model/common/user-identity-schema.js';
export declare class UserIdentity implements Facade<UserIdentitySchema> {
    readonly encapsulatedObject: UserIdentitySchema;
    constructor(encapsulatedObject: UserIdentitySchema);
    get name(): string;
    set name(name: string);
    get hostname(): string;
    set hostname(hostname: string);
}
