export interface FormatContext {
    allocatedProgramId?: number | null;
    isFreeSeat?: boolean;
    paymentStatus?: string | null;
    subStatus?: string | null;
    approvalStatus?: string | null;
    reservedLink?: boolean | null;
    requiresApproval?: boolean | null;
    waitlistApplicable?: boolean | null;
}
export declare function formatValue(value: unknown, format?: string | null, context?: FormatContext): string | number | null;
