export declare const getStatusColor: (status: string) => "var(--status-warning-text-color)" | "var(--status-button-text-skipped)" | "var(--status-button-text-passed)" | "var(--status-button-text-failed)" | "var(--status-button-text-notExecuted)"; export declare const getStatusLabel: (status: string) => string; export declare const getStatus: (status: string) => any;