/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ type ChromeLookup = (command: string) => string | null | undefined; interface ChromeAvailabilityDeps { readonly which: ChromeLookup | undefined; readonly env: Readonly>; readonly platform: NodeJS.Platform; readonly fileExists: (filePath: string) => boolean; } export declare function isChromeAvailable(deps?: ChromeAvailabilityDeps): boolean; export {};