import { type OptionValues } from "commander"; import { type CatalogExportConfig } from "./types.js"; export declare function mergeConfigs(...configs: Partial[]): CatalogExportConfig; /** * Read credentials from ENV variables */ export declare function getConfigFromEnv(env: { [key: string]: string | undefined; }): Partial; /** * Allow normal props and credentials to be defined as CLI options */ export declare function getConfigFromOptions(obj: OptionValues): Partial; /** * Config file can only hold normal props, not credentials */ export declare function getConfigFromConfigFile(filePath: string): Promise>; /** * package.json can only hold normal props, not credentials */ export declare function getConfigFromPackage(workingDir: string): Promise>; //# sourceMappingURL=config.d.ts.map