export interface IGitInfo { username: string; email: string; } declare const getGitInfo: () => Promise; export default getGitInfo;