import { Package } from './package'; import { PluginDefinition } from './plugin/definition'; type GenericPackage = Exclude; /** * Returns the major version range for a given package. * Version utility helpers are only intended to be used with plugins. **/ export declare function allWithinMajorOf(pkg: T): T & { version: string; }; /** * Returns the minor version range for a given package. * Version utility helpers are only intended to be used with plugins. **/ export declare function allWithinMinorOf(pkg: T): T & { version: string; }; export {};