import { AnyObjInterface } from '../../interfaces/AnyObjInterface';
import { ComponentContract } from '../contracts/ComponentContract';
export declare class QuillEditor implements ComponentContract {
    private quillId;
    private quill;
    constructor(quillId: string, options: AnyObjInterface);
    getValue(): null | string;
    setValue(json: string): void;
}
