import type { CloudpackConfig } from '@ms-cloudpack/common-types'; import { type ReadAppConfigOptions } from './readAppConfig.js'; export type ReadConfigOptions = ReadAppConfigOptions & Partial>; /** * Read the app config and generated config if they exist. * * Throws if there's an error reading a file or certain settings are invalid. (As of writing, * this doesn't do full schema validation; it only validates certain specific settings.) */ export declare function readConfig(appPath: string, options?: ReadConfigOptions): Promise; //# sourceMappingURL=readConfig.d.ts.map