import { type IPackage } from '../../types'; /** * Generate the alias list * @param packageDefBase * @param rootPath * @returns */ export declare const generateAlias: (packageDefBase: IPackage, rootPath: string) => Record; /** * Run the Run command * @param rootPath * @param command * @param args */ export declare const runExecutor: (rootPath: string, command: string, args: string[]) => void; /** * Run the alias command * @param rootPath */ export declare const aliasExecutor: (rootPath: string) => void;