import type { $PipelineJson } from '../../commands/_common/types/CommandParser'; import type { MarkdownSection } from '../../utils/markdown/parseMarkdownSection'; import type { UniqueSectionNameResolver } from './createUniqueSectionNameResolver'; /** * Parses, applies, and persists one h2 task section. * * @private internal utility of `parsePipeline` */ export declare function processPipelineSection(pipelineSection: MarkdownSection, $pipelineJson: $PipelineJson, getUniqueSectionName: UniqueSectionNameResolver): void;