import { Page } from 'playwright'; import { TestScenario, ApiError } from '../../types/index.js'; export interface VerificationResult { passed: boolean; explanation: string; } export declare function verifyResult(page: Page, scenario: TestScenario, _screenshotPath: string, navigatedUrl?: string, apiErrors?: ApiError[]): Promise;