import { Delta } from "quill-next"; /** * Basically written by Gemini. */ type DeltaOperation = Delta['ops']; export declare class DeltaToMarkdown { private outputLines; private currentLineSegments; private activeBlockAttributes; private orderedListCounters; private inCodeBlock; private codeBlockLanguage; constructor(); private resetLineBuffers; private initializeConversionState; private _applyInlineFormatting; private _renderCurrentLine; private _processEmbed; private _processNewline; convert(deltaOps: DeltaOperation): string; } export {};