import type { PackageInfos } from '../types/PackageInfo'; import type { BeachballOptions, ParsedOptions } from '../types/BeachballOptions'; /** Options subset used by `getPackageInfos` */ type PackageInfosOptions = Pick & { options: Pick; }; /** * Get a mapping from package name to package info for all packages in the workspace * (reading from package.json files). * * This looks for files relative to `cliOptions.path` (the project root). * The CLI options are needed so they can be properly merged with the package options * into `PackageInfo.packageOptions` without going back through the whole process of * getting CLI options. */ export declare function getPackageInfos(cliOptions: PackageInfosOptions): PackageInfos; /** @deprecated Pass the pre-parsed options */ export declare function getPackageInfos(cwd: string): PackageInfos; export {}; //# sourceMappingURL=getPackageInfos.d.ts.map