export declare const DEFAULT_CLIENT_CHANNEL = "dxos:app"; export declare const DEFAULT_INTERNAL_CHANNEL = "dxos:vault"; export declare const DEFAULT_SHELL_CHANNEL = "dxos:shell"; export declare const DEFAULT_WORKER_BROADCAST_CHANNEL = "dxos:shared-worker"; /** * @deprecated */ export declare const DEFAULT_VAULT_URL = "https://halo.dxos.org/vault.html"; /** * @deprecated */ export declare const DEFAULT_PROFILE = "default"; export declare const EXPECTED_CONFIG_VERSION = 1; export declare const defaultConfig: { version: number; }; export declare const DX_CONFIG: string; export declare const DX_CACHE: string; export declare const DX_DATA: string; export declare const DX_STATE: string; export declare const DX_RUNTIME = "/tmp/dx/run"; export declare enum DXEnv { CONFIG = "DX_CONFIG", DEBUG = "DX_DEBUG", NO_AGENT = "DX_NO_AGENT", PROFILE = "DX_PROFILE" } export declare namespace DXEnv { /** * Helper to get the value from process.env */ function get(variable: DXEnv): string | undefined; function get(variable: DXEnv, defaultValue: string): string; } export declare const getProfilePath: (root: string, profile: string, file?: string) => string; /** Path to the profile config file (profile/.yml). */ export declare const getProfileConfigPath: (root: string, profile: string) => string; //# sourceMappingURL=config.d.ts.map