export interface Client { getRootPathAsync(): Promise; isFileIgnoredAsync(filePath: string): Promise; } export default function getVCSClientAsync(projectDir: string): Promise;