import { SemanticVersion } from "./SemanticVersion.js";
import { Version } from "./Version.js";
export declare class VersionParser {
    static parse(s: string, storeX: boolean): Version;
    static parseSemantic(s: string): SemanticVersion;
}
