import type { string_executable_path } from '../../types/string_filename'; import type { LocateAppOptions } from '../locateApp'; /** * Attempts to locate the specified application on a Windows system by searching common installation directories. * Returns the path to the executable if found, or null otherwise. * * @private within the repository */ export declare function locateAppOnWindows({ appName, windowsSuffix, }: Pick, 'appName' | 'windowsSuffix'>): Promise;