import { VersionBranch } from './configuration';
import { GitTag } from './git';
export type GitSemverTag = {
    hash?: string;
    version: string;
};
export declare function determineCurrentVersion(tags: GitTag[], branch: VersionBranch, prefix: string): GitSemverTag;
