import type { CloudpackConfig } from '@ms-cloudpack/common-types'; import { type ReadConfigOptions } from '@ms-cloudpack/config'; export declare class InvalidCloudpackConfigError extends Error { /** * If true, only the error message will be shown (no stack trace). * Used for expected errors like missing config files. */ isExpected?: boolean; constructor(message: string, options?: { isExpected?: boolean; }); } /** * Read local cloudpack configs for multiple apps, and augment with the given options. */ export declare function readLocalConfigs(appPaths: string[], readConfigOptions: ReadConfigOptions): Promise>; //# sourceMappingURL=readLocalConfigs.d.ts.map