export declare class Constants { static readonly SUCCESS_STRING = "success"; static readonly BACKEND_SERVER_URL = "/server/public/index.php/api"; static readonly ERROR_MSG = "Error occurred please try again."; static readonly NO_DATA_MSG = "No data to display"; static readonly SERVER_ERROR = "Server error. Please try Again"; static readonly USER_ORIGIN = "ANNA"; static readonly ACTIVE_USER_STATUS = "active"; static readonly DELETED_USER_STATUS = "deleted"; static readonly INACTIVE_USER_STATUS = "inactive"; static readonly OGAdminRole = "Ownership Group Admin"; static readonly ASARole = "Anna Station Admin"; static readonly dollars = "$"; static readonly SERVER_ERROR_MSG = "Something went wrong! Please try again"; } export declare class ErrorCodes { static readonly BAD_REQUEST = 400; static readonly SERVER_ERROR = 500; static readonly SUCCESS_CODE = 200; static readonly SUCCESS_CODE_GET = 200; static readonly SUCCESS_CODE_POST = 201; static readonly SUCCESS_CODE_PATCH = 204; static readonly NO_CONTENT = 204; static readonly under_review = 409; static readonly UNAUTHORIZED_ACCESS = 401; } export declare enum Days { M = 1, Tu = 2, We = 3, Th = 4, F = 5, Sa = 6, Su = 7 } export declare class OrderSources { static readonly Medialine = "Medialine"; static readonly Non_electronic = "Non electronic"; static readonly Others = "Others"; static readonly WOC_unlinked = "WOC Unlinked"; static readonly WOC_linked = "WOC Linked"; static readonly WOZ = "WOZ"; static readonly Darwin = "Darwin"; } export declare class ANNAIconNames { static readonly AutomationActivatedIconName = "anna-automation-activated-icon mdi mdi-cog-refresh"; }