import { type Config as ConfigProto } from '@dxos/protocols/proto/dxos/config'; /** * Profile */ export declare const Profile: (profile?: string) => ConfigProto; /** * Development config. */ export declare const Local: () => Partial; /** * Provided dynamically by server. */ export declare const Dynamics: () => Partial; /** * ENV variable (key/value) map. */ export declare const Envs: (basePath?: string) => Partial; /** * JSON config. */ export declare const Defaults: (basePath?: string) => Partial; /** * Load config from storage. */ export declare const Storage: () => Promise>; export declare const Remote: (target: string | undefined, authenticationToken?: string) => Partial; //# sourceMappingURL=index.d.ts.map