import Quill from 'quill'; /** Add our own check in to stop Quill from automatically blocking paste events into inputs in the editor popovers. */ declare const QuillClipboard: new (quill: Quill, options: Record) => { onPaste(e: ClipboardEvent): void; }; export default class AllowInputPasteClipboard extends QuillClipboard { onPaste(e: ClipboardEvent, ref?: { text?: string; }): void; } export {};