type BinaryVersionCheckParams = { name: string; versionCommand: { cmd: string; args: string[]; }; versionRegex: RegExp; minVersion: string; }; /** * throws if version check fails or the version is too old */ export declare function validateInstall(params: BinaryVersionCheckParams): Promise; export declare const gitVersionRegex: RegExp; /** * throws if no git is installed or version is too old */ export declare function validateGitInstall(): Promise; export {};