import type { Page } from "playwright"; export type IssueType = "overflow" | "descender-clipping" | "unwrapped-text" | "emoji"; export type Severity = "warn" | "error"; export interface Issue { type: IssueType; severity: Severity; message: string; selector?: string | undefined; } export interface SlideReport { slideIndex: number; issues: Issue[]; } export interface ValidationReport { slides: SlideReport[]; } export declare function validateSlideHtml(page: Page): Promise; export declare function formatValidationReport(report: ValidationReport): string; //# sourceMappingURL=slide-validator.d.ts.map