import { IGitExecutionOptions } from '../core/git'; /** * Returns with an inverse chronologically ordered array of commit SHA for the given file. The first element is the `HEAD` commit. * * @param repository the repository or the absolute FS path to the local clone. * @param path the absolute FS path of the file from the repository which history information has to be retrieved. * @param branch the branch to run the history query. Default is the currently active branch. */ export declare function logCommitSHAs(repositoryPath: string, path: string, branch?: string, options?: IGitExecutionOptions): Promise;