import type { DocumentStructure } from '../schema.ts'; import type { Root } from 'mdast'; export type ParsedContent = { ast: Root; structure: DocumentStructure; }; export declare function parseContent(source: { path: string; content: string; }): ParsedContent;