declare const constants: {
    MS_USER_PASSWORD_SALT_ROUNDS: number;
    MS_USER_REMOVE_ACCOUNT_RESTORE_TIME: number;
    MS_USER_CHANGE_PASSWORD_CLEAR_TOKENS_TYPE: string;
    IS_BUILD: string | boolean;
    VERSION: string;
    PACKAGE_NAME: string;
    ENV: string;
    IS_PROD: boolean;
    IS_DEV: boolean;
    IS_TEST: boolean;
    ENVIRONMENT: string;
    SRC_FOLDER: string;
    MS_NAME: string;
    MS_CONFIG_NAME: string;
    MS_CONNECTION: string | undefined;
    IS_CONNECTION_SRV: boolean;
    MS_WORKERS: number;
    IS_ENABLE_REMOTE_MIDDLEWARE: boolean;
    IS_REMOTE_CONFIG_ENABLE: boolean;
    IS_ENABLE_GRAFANA_LOG: boolean;
    MS_GRAFANA_LOKI_CONFIG: any;
    IS_OPENTELEMETRY_ENABLE: boolean;
    IS_DISABLE_OPENTELEMETRY_TRACES: boolean;
    IS_DISABLE_OPENTELEMETRY_METRICS: boolean;
    MS_OPENTELEMETRY_OTLP_URL: string | undefined;
    IS_OPENTELEMETRY_OTLP_URL_SRV: boolean;
    IS_OPENTELEMETRY_DEBUG: boolean;
    MS_CONSOLE_LOG_LEVEL: string;
    IS_ENABLE_EVENTS: boolean;
    DB: {
        URL: string | undefined;
        HOST: string;
        PORT: number;
        USERNAME: string;
        PASSWORD: string;
        DATABASE: string;
        IS_REJECT_UNAUTHORIZED: boolean;
        IS_FROM_CONFIG_MS: boolean;
    };
    FIREBASE: {
        CREDENTIAL: any;
        IS_FROM_CONFIG_MS: boolean;
    };
};
export { constants as default };
