import Scroll from "quill/blots/scroll"; declare const Container: any; declare const Block: any; declare class TodoContainer extends Container { static blotName: string; static tagName: string; static className: string; } declare class TodoItem extends Block { static blotName: string; static tagName: string; static className: string; static requiredContainer: typeof TodoContainer; static create(value: any): HTMLElement; static formats(domNode: HTMLElement): string | undefined; static register(): void; constructor(scroll: Scroll, domNode: HTMLElement); format(name: string, value: string): void; } export { TodoContainer, TodoItem as default };