import type { PackageManager } from '../types'; type Environment = Record; export declare const execute: (options: { packageManager: PackageManager; commandArguments: string[]; cwd?: string; environment?: Environment; silent?: boolean; }) => Promise; export declare const runFile: (options: { runScriptFilePath: string; cwd: string; tsconfigPath?: string; environment?: Environment; }) => 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; }) => Promise; export {};