import type { Browser } from 'webdriverio'; export interface SnapshotOptions { interactive?: boolean; all?: boolean; } export interface SnapshotResult { text: string; count: number; } export declare function takeSnapshot(driver: Browser, options?: SnapshotOptions): Promise; //# sourceMappingURL=snapshot.d.ts.map