export declare enum Status { INACTIVE = "inactive", PROCESSING = "processing", SUCCESS = "success", WARNING = "warning", ERROR = "error" } export type StatusWrapper = { status: Status; message?: string; data?: T; };