import type { ValueSanitizer } from 'roosterjs-content-model-types'; /** * @internal * Chain all callback for an style sanitizer * @param map The source callback map * @param name Name of the property to chain * @param newCallback A new callback to process the given name on the given map. */ export declare function chainSanitizerCallback(map: Record, name: string, newCallback: ValueSanitizer): void;