import { Status } from '../commonStateTypes/status'; export interface StatusCodeWithLabelPayload { code: string; label: string; } export interface StatusPayload { code: number; description: string; message: string; is_filtered_report?: boolean; last_refresh_attempt_time?: string | null; last_refresh_success_time?: string | null; } export declare const mapStatusPayloadToStatus: (payload: StatusPayload) => Status;