import type { ParsedVersion } from "./types.js"; export declare function parseVersion(versionString: string): ParsedVersion; /** * Resolve the lowest version guaranteed by one supported npm-style specifier. * * The detector deliberately rejects tags, protocols, disjunctions, and * upper-bound-only ranges because none of them identifies a safe capability * baseline without a package-manager resolver. */ export declare function resolveReactDependencyVersion(specifier: string): string; export declare function isReact17(major: number): boolean; export declare function isReact18(major: number): boolean; export declare function isReact19(major: number, _version: string): boolean; //# sourceMappingURL=version-parser.d.ts.map