import { type iAnalyze } from "./deps/checkDependenciesUpdates"; type tPackageType = Record; export interface iOptions { "failAtMajor"?: boolean; "failAtMinor"?: boolean; "failAtPatch"?: boolean; "dev"?: boolean; "optional"?: boolean; "npmrcFile"?: string; } export interface iFormattedOptions { "failAtMajor": boolean; "failAtMinor": boolean; "failAtPatch": boolean; "dev": boolean; "optional": boolean; "npmrcFile": string; } export type { iAnalyze }; export default function checkVersionModule(source: string | tPackageType, opts?: iOptions): Promise;