import type { Node } from '@markdoc/markdoc'; import type { GetInnerContentFn } from '../../../../types/index.js'; import type { SearchNode } from './nodes/types.js'; type Params = { ast: Node; partials: Record; skipConditionals?: boolean; getInnerContent: GetInnerContentFn; }; export declare class AstToSearchNodeTransformer { #private; constructor({ ast, partials, skipConditionals, getInnerContent }: Params); transform(): Generator; } export {}; //# sourceMappingURL=walk-sections.d.ts.map