import { ChildProcessWithoutNullStreams } from 'child_process'; /** Spawn a CLI command and optionally printing the logs and error messages */ export declare function runCommandAsync(path: string, command: string, ignoreLogs?: boolean): ChildProcessWithoutNullStreams; /** Synchronously run a CLI command and return the stdout, optionally printing the logs and error messages */ export declare function runCommand(path: string, command: string, ignoreLogs?: boolean): Promise;