import { Project } from '../../contexts/ProjectContext'; /** * Tag parts are the individual parts of a version, e.g. [major].[minor].[patch] * are the parts of a semantic version * * @public */ export declare function getTagParts(options: { project: Project; tag: string; }): { error: import("../..").AlertError; tagParts?: undefined; } | { tagParts: import("./getCalverTagParts").CalverTagParts; error?: undefined; } | { tagParts: import("./getSemverTagParts").SemverTagParts; error?: undefined; };