export type SdkBrand = 'global' | 'cn'; export declare const SDK_BRAND: SdkBrand; export declare const IS_CN_SDK: boolean; /** * Prefix for all Qoder environment variables recognized by the CLI. * Global builds use `QODER_`, CN builds use `QODERCN_`. */ export declare const SDK_BRAND_ENV_PREFIX: string; /** * Environment variable the CLI reads to resolve a VPC private-deployment * endpoint. VPC mode only activates in CN builds. */ export declare const SDK_VPC_ENDPOINT_ENV: string; export declare const SDK_BRAND_CONFIG: { productName: string; packageName: string; cliCommands: readonly ["qoderclicn", "qodercn"]; configDirName: string; projectConfigDirName: string; configDirEnv: string; configDirNameEnv: string; cliHomeEnv: string; accessTokenEnv: string; serviceAccountEnv: string; } | { productName: string; packageName: string; cliCommands: readonly ["qodercli", "qoder"]; configDirName: string; projectConfigDirName: string; configDirEnv: string; configDirNameEnv: string; cliHomeEnv: string; accessTokenEnv: string; serviceAccountEnv: string; };