import type { CreatePasteFragment } from 'roosterjs-editor-types'; /** * @internal * Create a DocumentFragment for paste from a ClipboardData * @param core The EditorCore object. * @param clipboardData Clipboard data retrieved from clipboard * @param position The position to paste to * @param pasteAsText True to force use plain text as the content to paste, false to choose HTML or Image if any * @param applyCurrentStyle True if apply format of current selection to the pasted content, * false to keep original format * @param pasteAsImage True if the image should be pasted as image */ export declare const createPasteFragment: CreatePasteFragment;