/** * Executes a command asynchronously using child_process.exec. * * @param {string} command - The command to execute. * @returns {Promise} - A promise that resolves with the stdout of the executed command if successful, otherwise rejects with the error. */ export declare const async: (command: string) => Promise;