import type { JsonValue } from "type-fest";
export declare function execSingly(command: string | string[], args?: string[]): void;
export declare function execParallelly(commands: Record<string, string | string[]>, args?: string[]): Promise<void>;
export declare function npx(command: string): void;
export declare function readJsonSync(filePath: string): JsonValue;
