import Scroll from "quill/blots/scroll"; declare const Container: any; declare const Block: any; declare class OrderedContainer extends Container { static blotName: string; static tagName: string; static className: string; } declare class OrderedItem extends Block { static blotName: string; static tagName: string; static className: string; static requiredContainer: typeof OrderedContainer; 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 { OrderedContainer, OrderedItem as default };