/** * Cherche un programme dans le `PATH`. * * @param {string} programname Le nom du programme cherché. * @returns {Promise} Une promesse contenant le chemin vers le * programme. */ export default function which(programname: string): Promise;