/** * Copyright (c) 2025 Mihajlo Stojanovski * All rights reserved. */ import { Rule, RuleContext, Finding } from "../../../types"; /** * Page/Browser Closed Rule * Covers: page closed, browser closed, context closed */ export declare class PageClosedRule implements Rule { id: string; priority: number; kind: Finding["kind"]; match(ctx: RuleContext): boolean; build(ctx: RuleContext): Finding[]; } //# sourceMappingURL=page-closed.d.ts.map