import { Command } from 'commander'; type Example = { description: string; command: string; }; declare const format_examples: (examples: Example[]) => string; declare const add_examples: (cmd: Command, examples: Example[]) => Command; export { add_examples, format_examples }; export type { Example }; //# sourceMappingURL=help.d.ts.map