import { ReactNode } from 'react'; export type StatusTone = "positive" | "negative" | "warning" | "neutral" | "informative"; export interface StatusPresentation { description?: string; emphasis?: "normal" | "strong"; icon?: ReactNode; label: string; tone: StatusTone; } export declare function normalizeStatusValue(value: unknown): string; export declare function formatStatusLabel(value: unknown): string;