import type { PackageManager } from '../types'; type Environment = Record; export declare const execute: (options: { packageManager: PackageManager; commandArguments: string[]; cwd?: string; questionAnswers?: { question: string; answer: string; }[]; environment?: Environment; maxTimeout?: number; }) => Promise; /** * Run a command in a shell. * * @param command the command to execute * @param args the arguments to pass to the command * @param cwd the path in the monorepo to execute the command * @param env the environments ot pass to the command * @returns the result of the command */ export declare const runCommand: (options: { command: string; cwd?: string; commandArguments?: string[]; environment?: Environment; silent?: boolean; questionAnswers?: { question: string; answer: string; }[]; maxTimeout?: number; }) => Promise; export {};