import type { CAC } from 'cac'; type HelpSection = { title?: string; body: string; }; export declare function buildHelpSections(sections: HelpSection[], cli: CAC): HelpSection[]; export {};