import type { IDialog, IJodit, InsertMode, IUIOption, Nullable } from 'jodit/types'; import type { PasteEvent } from './interface'; export declare function pasteInsertHtml(e: Nullable, editor: IJodit, html: number | string | Node): void; export declare function getAllTypes(dt: DataTransfer): string; export declare function askInsertTypeDialog(jodit: IJodit, msg: string, title: string, callback: (yes: InsertMode) => void, buttonList: IUIOption[]): IDialog | void;