import type { PosixPath } from 'typesafe-path/posix'; import { MetaCheckerOptions } from '../types'; export declare function guessSourceUrlTemplate(remotes: string[]): string | undefined; export declare function gitIsInstalled(): boolean; export declare function createRepo(rootPath: string, fileNames: Set, checkerOptions: MetaCheckerOptions): { getURL: (fileName: string, line: number) => string; } | null; export type Repo = ReturnType;