import type { PackageInfo as WSPackageInfo } from 'workspace-tools'; import type { CliOptions } from '../types/BeachballOptions'; import { type PackageInfos } from '../types/PackageInfo'; /** * Fill in options to convert `workspace-tools` `PackageInfos` to the format used in this repo, * including any package-specific options merged with CLI overrides. * @param cliOptions Parsed CLI options. Can be null in tests to indicate no CLI options. * @param enableCombinedOptionsForTests For testing only: usually in tests, the combinedOptions * getter is not added to prevent jest exceptions when checking equality of objects. * Use this to force adding the getter for testing its behavior. */ export declare function getPackageInfosWithOptions(wsPackageInfos: WSPackageInfo[], cliOptions: Partial | null, enableCombinedOptionsForTests?: boolean): PackageInfos; /** @deprecated Provide the pre-parsed options */ export declare function getPackageInfosWithOptions(wsPackageInfos: WSPackageInfo[]): PackageInfos; //# sourceMappingURL=getPackageInfosWithOptions.d.ts.map