export interface Row { id: string; size: number; columns: { id: string; size: number; data: any; }[]; } /** * Sanitizes the HTML content in all EditorJS raw HTML blocks within the page content. * Each column's `data` is an EditorJS block: { type, data: { ... } }. * For "raw" type blocks, `data.html` is sanitized via sanitize-html. */ declare function sanitizeRawHtml(editorJSData: Row[]): void; export { sanitizeRawHtml };