import { RangeStatic, Sources } from 'quill'; import Delta from './quill-delta/Delta'; interface IQuill { selection: any; root: HTMLDivElement; addContainer(classNameOrDomNode: string | Node, refNode?: Node): HTMLDivElement; isEnabled(): boolean; getSelection(focus: true): RangeStatic; updateContents(delta: Delta, source: Sources): Delta; setSelection(index: number, name: string): void; focus(): void; } export default class Clipboard { private quill; private container; constructor(quill: IQuill, _options?: {}); onPaste(e: ClipboardEvent): void; } export {};