import { PropType } from '@structured-types/api'; import { DocumentationNode, SectionName, SectionObject } from '../types'; import { PropRepos } from '../utility/prop-repos'; import { DocumentationConfig } from '../DocumentationConfig'; export declare const generateSection: (prop: PropType, name: SectionName, { sections, config, repos, }: { config: DocumentationConfig; repos: PropRepos; sections: SectionObject; }) => Promise;