export type PdfValidationSeverity = "error" | "warning" | "info"; export interface PdfValidationIssue { severity: PdfValidationSeverity; code: string; message: string; suggestion?: string; } export declare function analyzePdfHtml(html: string, opts?: { allowRemoteAssets?: boolean; }): PdfValidationIssue[]; export declare function hasBlockingPdfHtmlIssues(issues: PdfValidationIssue[]): boolean; //# sourceMappingURL=validate.d.ts.map