/// import type { SpawnOptions } from 'node:child_process'; export interface ExecOptions extends SpawnOptions { /** * Defaults to true. * Set to false to skip logging. */ log?: boolean; } export declare function execVoidCommand(cmd: string, args?: string[], opt?: ExecOptions): Promise; export declare function execVoidCommandSync(cmd: string, args?: string[], opt?: ExecOptions): void;