import type { Parent } from 'unist'; export declare function findRelevantNodes(tree: Parent, skipReferenceDetection: boolean): Generator<{ node: Paragraph; reference: string; }, void, unknown>; interface Paragraph extends Parent { type: 'paragraph'; } export {}; //# sourceMappingURL=find-nodes.d.ts.map