import type { Node } from '@markdoc/markdoc'; import { HeadingNode } from './heading-node.js'; export type SectionNode = string | HeadingNode; export declare function walkSections(node: Node): Generator; //# sourceMappingURL=walk-sections.d.ts.map