import { ParseOptions, OptionContent, CommandLineOption, PropertyOptions, Content, OptionList } from '../contracts'; export declare function getOptionSections(options: ParseOptions): OptionContent[]; export declare function getOptionFooterSection(optionList: CommandLineOption[], options: ParseOptions): Content[]; export declare function generateTableFooter(optionList: CommandLineOption[], options: ParseOptions): string | undefined; export declare function addOptions(content: OptionContent, optionList: CommandLineOption[], options: ParseOptions): OptionList; /** * adds default or optional modifiers to type label or description * @param option */ export declare function mapDefinitionDetails(definition: CommandLineOption, options: ParseOptions): CommandLineOption; export declare function isBoolean(option: PropertyOptions): boolean;