import type { BeforePasteEvent, TrustedHTMLHandler } from 'roosterjs-editor-types'; /** * Retrieves the metadata from the content inside of the clipboard * @param doc Document parsed from the clipboard * @param event Before Paste event * @param trustedHTMLHandler the trusted html handler to sanitize the content. */ export default function retrieveMetadataFromClipboard(doc: Document | undefined, event: BeforePasteEvent, trustedHTMLHandler: TrustedHTMLHandler): void;