import type { BeforePasteEvent, NodePosition } from 'roosterjs-editor-types'; /** * Sanitize the content from the pasted content * @param event The before paste event * @param position the position of the cursor */ export default function sanitizePasteContent(event: BeforePasteEvent, position: NodePosition | null): void;