export declare const isPkgName: (pkg: any) => pkg is { name: string; }; export declare const isPkgVersion: (pkg: any) => pkg is { version: string; }; export declare const isPkgModule: (pkg: any) => pkg is { module: string; }; export declare const isPkgMain: (pkg: any) => pkg is { main: string; }; export declare const getPkgName: (pkg: any) => string; export declare const getPkgVersion: (pkg: any) => string; export declare const getPkgTmcIsModule: (pkg: any) => boolean; export declare const getPkgDescription: (pkg: any) => string; export declare const getPkgAuthor: (pkg: any) => string; export declare const getPkgSource: (pkg: any) => string; export declare const getPkgTcmModules: (pkg: any) => string[]; export declare const getPkgTcmEngines: (pkg: any) => string | undefined; export declare const getPkgDependencies: (pkg: any) => Record; export declare const getPkDevDependencies: (pkg: any) => Record; export declare const findDependencyModuleVersion: (pkg: any, name: string) => string; export declare const findDevDependencyModuleVersion: (pkg: any, name: string) => string; export declare const applyVersionToTheDependencyName: (pkg: any, name: string) => string;