import type { SecurityIdentity } from "../../../types/security.js"; type IdentityInput = SecurityIdentity | null | undefined; export declare class IdentityValue { private readonly value; private constructor(); static create(identity: IdentityInput): IdentityValue; getValue(): { id: string; displayName: string; type: string; } | null; getValueOrFallback(fallback: IdentityInput): { id: string; displayName: string; type: string; } | null; } export {};