import { ChildProcess } from "child_process"; /** * ## Preflight Function * @param {string} command * @returns {ChildProcess | null} */ export default function run(command: string): ChildProcess | null;