import { type ExecSyncOptions } from "node:child_process"; export type ShellOptions = Omit & { env?: Record; }; /** Run the cmd synchronously. Output goes to terminal. */ export declare const shell: (cmd: string, { env, ...otherOptions }?: ShellOptions) => void; /** Run the cmd synchronously, returning output as a string */ export declare const getShellOutput: (cmd: string, { env, ...otherOptions }?: ShellOptions) => string;