
type CheckOpts = {
  skipRemote?: boolean,
  tools?: string[],
}

declare const checkVersion: (opts: CheckOpts) => Promise<boolean>
export default checkVersion;
