import { ICounterOption } from '../config/types';
import { default as FluentEditor } from '../fluent-editor';

export default class Counter {
    quill: FluentEditor;
    container: HTMLDivElement;
    options: ICounterOption;
    constructor(quill: FluentEditor, options: ICounterOption);
    resolveOptions(options: ICounterOption): {
        format: string;
        unit: string;
        template: any;
        count: number;
    } & ICounterOption;
    renderCount: () => void;
    getContentLength(format: any): number;
}
