import type { ValueSanitizer } from 'roosterjs-content-model-types'; /** * @internal */ export declare const AllowedTags: ReadonlyArray; /** * @internal */ export declare const DisallowedTags: ReadonlyArray; /** * @internal */ export declare function sanitizeElement(element: HTMLElement, allowedTags: ReadonlyArray, disallowedTags: ReadonlyArray, styleSanitizers?: Readonly>, attributeSanitizers?: Readonly>): HTMLElement | null; /** * @internal */ export declare function createSanitizedElement(doc: Document, tag: string, attributes: NamedNodeMap, styleSanitizers?: Readonly>, attributeSanitizers?: Readonly>): HTMLElement;