import { LogFN } from './log'; export declare const runCmd: ({ cmd, timeoutInSeconds, progressLog, successLog, warnLog, errorLog, }: { cmd: string; timeoutInSeconds?: number | undefined; progressLog?: LogFN | undefined; successLog?: LogFN | undefined; warnLog?: LogFN | undefined; errorLog?: LogFN | undefined; }) => Promise;