import { ChildProcess } from 'child_process'; import { ExecOptions, ShellString } from 'shelljs'; export interface Options extends ExecOptions { asString?: boolean; asJSON?: boolean; } export { ShellString, ChildProcess }; export type Result = Output extends string ? string : Output; export declare const execCommand: (command: string, options?: Options, isDryRun?: boolean) => Output;