/** * Executes a shell command and returns it as a Promise. * * @param cmd - The shell command to execute. * @returns A Promise that resolves with the output of the shell command. */ export declare function sh(cmd?: string): Promise;