import type { AppBuildInfo, BinaryPathResult, PathGenerationResult } from '@wdio/electron-types'; /** * Generate possible binary paths for the Electron application * Phase 1: Path Generation */ export declare function generateBinaryPaths(packageJsonPath: string, appBuildInfo: AppBuildInfo, electronVersion?: string, p?: NodeJS.Process): PathGenerationResult; /** * Determine the path to the Electron application binary using a two-phase approach * Returns detailed information about both path generation and validation * @param packageJsonPath path to the nearest package.json * @param appBuildInfo build information about the Electron application * @param electronVersion version of Electron to use * @param p process object (used for testing purposes) * @returns detailed result with binary path and diagnostic information */ export declare function getBinaryPath(packageJsonPath: string, appBuildInfo: AppBuildInfo, electronVersion?: string, p?: NodeJS.Process): Promise; //# sourceMappingURL=binaryPath.d.ts.map