import type { ExecCommandOptions } from './ExecCommandOptions';
/**
 * Run one command in a shell
 *
 *
 * Note: There are 2 similar functions in the codebase:
 * - `$execCommand` which runs a single command
 * - `$execCommands` which runs multiple commands
 * Note: `$` is used to indicate that this function is not a pure function - it runs a command in a shell
 *
 * @public exported from `@promptbook/node`
 */
export declare function $execCommand(options: ExecCommandOptions): Promise<string>;
/**
 * Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment
 */
