import { exec } from 'node:child_process'; export declare const execAsync: typeof exec.__promisify__; export declare function addFlag(command: string, flagName: string, value: string | number | boolean | string[]): string; export interface CommandResults { stderr: string; stdout: string; } export declare function runCommandInDir(directory: string, command: string): Promise;