export type ExecOptions = {
    parallel?: boolean;
    noWait?: boolean;
    ignoreCode?: boolean;
    quiet?: boolean;
};
export type StreamInfo = {
    level: "out" | "err";
    stream: any;
    package: string;
};
export declare const execute: (runtime: string, pcg: string, command: string, args: string[], options: ExecOptions) => Promise<void>;
