import { PasteType } from 'roosterjs-editor-types'; /** * Get the paste type that will be used corresponding to the configuration * @param pasteAsText Whether to paste as Text * @param applyCurrentStyle Whether to apply the current format to the content * @param pasteAsImage Whether to only paste the image * @returns */ export default function getPasteType(pasteAsText: boolean, applyCurrentStyle: boolean, pasteAsImage: boolean): PasteType;