import * as dntShim from "../../_dnt.shims.js"; export declare class Command implements dntShim.Deno.Command { #private; constructor(command: string, options?: dntShim.Deno.CommandOptions); output(): Promise; outputSync(): dntShim.Deno.CommandOutput; spawn(): ChildProcess; } declare class ChildProcess implements dntShim.Deno.ChildProcess { #private; get pid(): number; get status(): Promise; get stdin(): WritableStream; get stdout(): ReadableStream; get stderr(): ReadableStream; constructor(process: dntShim.Deno.Process); ref(): void; unref(): void; kill(signal: dntShim.Deno.Signal): void; output(): Promise; } export {};