import { StrayComments } from './comments.ts'; import { MemberData, RegionName } from './config.ts'; export type NormalizedRegions = readonly (readonly [RegionName, MemberData[]])[]; export declare function getNormalizedRegions(membersByName: StrayComments["membersByName"]): NormalizedRegions; /** * If there were footer comments in a region that no longer exists, attach * those footer comments to the region that the last node of that region is * in. */ export declare function reParentOrphanFooterComments(normalizedRegions: NormalizedRegions, regionFooter: StrayComments["regionFooter"]): void;