import type { string_executable_path } from '../../types/typeAliases'; import type { LocateAppOptions } from '../locateApp'; /** * Attempts to locate the specified application on a Linux system using the 'which' command. * Returns the path to the executable if found, or null otherwise. * * @private within the repository */ export declare function locateAppOnLinux({ linuxWhich, }: Pick, 'linuxWhich'>): Promise; /** * TODO: [🧠][♿] Maybe export through `@promptbook/node` * Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment */