import { Log } from './types'; /** * Returns latest branch name. */ declare const getCurrentBranch: (log: Log) => string; /** * Returns latest commit revision ID. */ declare const getCurrentRevision: (log: Log) => string; /** * Returns latest tags. */ declare const getCurrentTags: (log: Log) => string; export { getCurrentBranch, getCurrentRevision, getCurrentTags, };