import Document from "@atjson/document"; import MarkdownIt from "markdown-it"; import { Blockquote, BulletList, Fence, Heading, Image, Link, OrderedList, TableBodyCell } from "./annotations"; export default class CommonMarkSource extends Document { static contentType: string; static schema: (typeof Blockquote | typeof BulletList | typeof Fence | typeof Heading | typeof Image | typeof Link | typeof OrderedList | typeof TableBodyCell)[]; static fromRaw(markdown: string): CommonMarkSource; static get markdownParser(): MarkdownIt; static get contentHandlers(): {}; } //# sourceMappingURL=source.d.ts.map