export declare const create_quill: ({ id, toolbar, clipboard, keyboard, placeholder, theme, customFonts, customJS, readonly, }: {
    id: string;
    toolbar: 'false' | string;
    clipboard: string;
    keyboard: string;
    placeholder: string;
    theme: 'snow' | 'bubble';
    customFonts: Array<string>;
    customJS: string;
    readonly: boolean;
}) => string;
