import type { IEditor, OnNodeCreated, TextAndHtmlContentForCopy } from 'roosterjs-content-model-types'; /** * @internal * Exported only for unit testing */ export declare const onNodeCreated: OnNodeCreated; /** * Get the content for the copy event * @param editor The editor object * @param isCut if the event cut the content. * @param event the clipboard event that triggered the copy/cut * @returns */ export declare function getContentForCopy(editor: IEditor, isCut: boolean, event: ClipboardEvent): TextAndHtmlContentForCopy | null;