export type LifecycleStatus = 'planned' | 'current' | 'retired'; export declare function isLifecycleStatus(value: unknown): value is LifecycleStatus; export declare const LIFECYCLE_BADGE_URI: Record; export declare const EVIDENCE_BADGE_URI: string; export declare function ownerColorOf(owner: string | null): string | null; export declare function ownerBadgeUri(owner: string, initials: string): string; export declare function openQuestionsBadgeUri(count: number, next?: boolean): string; export declare function foldChipUri(count: number): string; export declare function ownerInitialsOf(owner: string | null): string | null;