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