import { Pkg } from '../scripts/releasePackage/type.js'; declare const run: (bin: string, args: string[], opts?: any) => Promise; declare const step: (msg: string) => void; declare const getPolyrepoPkgInfo: () => Promise<{ pkgDir: string; pkgDirPath: string; pkgJsonFilePath: string; pkgName: string; pkgCurrentVersion: string; }>; declare const renderDepTree: (deps: Pkg[], level?: number) => string; declare const getDepsChange: (deps: Pkg[]) => boolean; declare const getSelfBinPath: (binName: string) => string; export { getDepsChange, getPolyrepoPkgInfo, getSelfBinPath, renderDepTree, run, step };