import { TStandardEdgeResponse } from "./TStandardEdgeResponse"; /** * Red: The given config file is invalid, and cannot be saved/used for an application. * Green: The given config file is valid, and can be used. */ export declare enum EUnifiedStatus { Red = "Red", Green = "Green", } export interface TUnifiedResponse { status: EUnifiedStatus; message: string; edge_messages: TStandardEdgeResponse[]; support_messages?: string[]; }