import { Client } from '../vcs'; export default class NoVcsClient extends Client { private readonly cwdOverride?; constructor(options?: { cwdOverride?: string; }); getRootPathAsync(): Promise; makeShallowCopyAsync(destinationPath: string): Promise; isFileIgnoredAsync(filePath: string): Promise; canGetLastCommitMessage(): boolean; }