/// <reference types="node" />
/**
 * Runs a given command and passes a buffer to stdin
 *
 * @param command - The command to run
 * @param stdin - The buffer to pass to stdin
 * @internal
 */
export default function execWithStdin(command: string, stdin: Buffer): Promise<{
    stdout: string;
    stderr: string;
}>;
//# sourceMappingURL=execWithStdin.d.ts.map