import { ChromeChannel } from './types.js'; export type FindOptions = { executablePath?: string; channel?: ChromeChannel; }; export declare function findChrome(options: FindOptions): Promise<{ executablePath: string; type: string; } | { executablePath: null; type: null; }>;