import { SimpleGit } from 'simple-git'; /** * Contains methods using simple-git to perform commands relating to git. */ /** * Returns the contents of a remote file, undefined if an error was encountered. * See: https://git-scm.com/docs/git-cat-file for accepted values for each input. */ export declare function getRemoteBranchFile(simpleGit: SimpleGit, type: string, remote: string, branch: string, fileName: string): Promise; /** * Returns the contents of a remote url (https or ssh), undefined if an error was encountered. */ export declare function getRemoteUrl(simpleGit: SimpleGit, remote: string): Promise; //# sourceMappingURL=git.d.ts.map