export type Status = 'SUCCESS' | 'WARN' | 'ERROR';
export declare const Status: {
    Success: Status;
    Warn: Status;
    Error: Status;
};
