export declare function getRef(name: string): Promise; export declare function getMasterRef(): Promise; export declare function getLatestTag(): Promise; export declare function getChangedFilesSinceRef(ref: string, fullPath?: boolean): Promise; export declare function getChangedFilesSinceMaster(fullPath?: boolean): Promise; export declare function analyzeCommitsSinceRef(ref: string, workspace: string): Promise; export declare function getFirstCommitByWorkspaceFolder(workspaceFolder: string): Promise; export declare function getTags({ isRevert }: { isRevert: boolean; }): Promise; export declare function isRefInHistory(ref: string): Promise; export declare function addTag(tag: string, message?: string, ref?: string): Promise; export declare function pushTag(): Promise;