export declare const ErrorMessages: { INVALID_CREDENTIALS: string; EMAIL_ALREADY_EXISTS: string; USER_NOT_FOUND: string; INVALID_TOKEN: string; YOU_HAVE_TO_LOGIN_FIRST: string; SOMETHING_WENT_WRONG: string; BAD_REQUEST: string; FORBIDDEN: string; NOT_ACCEPTABLE: string; }; export declare enum ENextaPermission { TEST = "test" } export declare class CHeaderFields { static AUTHORIZATION: string; static WORKSPACE_ID: string; static WORKSPACE_TYPE: string; static USER_ID: string; static AUTHORITIES: string; } export declare enum EEnvConfig { PROJECT_ENV = "PROJECT_ENV", API_PORT = "API_PORT", INTERNAL_USERNAME = "INTERNAL_USERNAME", INTERNAL_PASSWORD = "INTERNAL_PASSWORD", CLIENT_USERNAME = "CLIENT_USERNAME", CLIENT_PASSWORD = "CLIENT_PASSWORD", MONGODB_URI = "MONGODB_URI", REDIS_HOST = "REDIS_HOST", REDIS_PORT = "REDIS_PORT", ENABLE_ROLE_GUARD = "ENABLE_ROLE_GUARD", KAFKA_BROKER_URL = "KAFKA_BROKER_URL", ENABLE_KAFKA_CONSUMER = "ENABLE_KAFKA_CONSUMER", DNS_USER_SERVICE = "DNS_USER_SERVICE", DNS_STORAGE_SERVICE = "DNS_STORAGE_SERVICE" }