import { StringMap } from '@alauda-fe/common'; export declare const RESOURCE_ROUTE_MAPPER: StringMap; export declare const STANDALONE_NG_MODEL: { standalone: boolean; }; export declare const PROMQL_EXPORT_EXTRA: { icon: string; title: { zh: string; en: string; }; type: string; }[]; export declare const ASSIGN_ALL = "ALL_ALL"; export declare const DEFAULT = "default"; export declare const TRUE = "true"; export declare const FALSE = "false"; export declare const TYPE = "type"; export declare const ACTION = "action"; export declare const KIND = "kind"; export declare const STATUS = "status"; export declare const ADDED_TIME = "added_time"; export declare const CREATED_AT = "created_at"; export declare const APP_MARKET = "app-market"; export declare const ALL = "ALL"; export declare const DOMAIN = "domain"; export declare const PORT = "port"; export declare const WEIGHT = "weight"; export declare const OPERATORS_NAMESPACE = "operators"; export declare const OCP_OPERATORS_NAMESPACE = "openshift-operators"; export declare const CRON_RULE_DOC_PATH = "cp-faq/11crontab/"; export declare const ACP_SAFEMODE = "acp-safemode"; export declare const WORKLOAD_TYPES: readonly ["Deployment", "DaemonSet", "StatefulSet"]; export declare const BASE_CLUSTER_ARCH = "amd64"; export declare const HARDWARE_ARCHITECTURE_MAPPER: { amd64: string; arm64: string; }; export type HardwareArchitecture = keyof typeof HARDWARE_ARCHITECTURE_MAPPER; export declare const SPECIAL_SYMBOL: unique symbol; export type SpecialSymbol = typeof SPECIAL_SYMBOL; /** * system 不对外暴露 * * reference: http://confluence.alauda.cn/pages/viewpage.action?pageId=81426797 */ export declare const OPERATOR_CATALOG_MAPPER: { PLATFORM: string; SYSTEM: string; }; export declare const V1BETA1 = "v1beta1"; export declare const MAX_PORT = 65535; export declare enum CRD_SCOPE { NAMESPACED = "Namespaced", CLUSTER = "Cluster" }