import type { BeachballOptions } from '../types/BeachballOptions'; import type { PackageInfo, ScopedPackages } from '../types/PackageInfo'; /** * Determines whether the package is included in the list of potentially-changed published packages, * based on private flags and scopedPackages. * * (All the reasons except nonexistent include the package name.) */ export declare function isPackageIncluded(packageInfo: PackageInfo | undefined, scopedPackages: ScopedPackages): { isIncluded: boolean; reason: string; }; export declare function getIncludedLoggers(options: Pick): { verboseLog: (msg: string) => void; logIgnored: (name: string, reason: string) => void; logIncluded: (name: string) => void; }; //# sourceMappingURL=isPackageIncluded.d.ts.map