import { IBrowserFinder } from './index'; /** * A no-op browser finder used to stub unsupported browsers/platforms (like * Edge on Linux). */ export declare class NoopFinder implements IBrowserFinder { findWhere(): Promise; findAll(): Promise; }