import type * as p from "@bokehjs/core/properties"; import { HTMLBox, HTMLBoxView } from "./layout"; export declare class QuillInputView extends HTMLBoxView { model: QuillInput; protected container: HTMLDivElement; protected _editor: HTMLDivElement; protected _editing: boolean; protected _toolbar: HTMLDivElement | null; quill: any; connect_signals(): void; _layout_toolbar(): void; render(): void; style_redraw(): void; after_layout(): void; } export declare namespace QuillInput { type Attrs = p.AttrsOf; type Props = HTMLBox.Props & { mode: p.Property; placeholder: p.Property; text: p.Property; toolbar: p.Property; }; } export interface QuillInput extends QuillInput.Attrs { } export declare class QuillInput extends HTMLBox { properties: QuillInput.Props; constructor(attrs?: Partial); static __module__: string; } //# sourceMappingURL=quill.d.ts.map