export type HelpDocSyncResult = "appended" | "skipped" | "unchanged" | "updated"; export declare function resolveHelpDocTargets(): string[]; export declare function buildHelpSection(helpBody: string): string; export declare function syncHelpDocFile(path: string, section: string): HelpDocSyncResult; export declare function syncTermHelpDocs(helpBody: string): void;