import { Interfaces } from '@oclif/core'; type Flag = Interfaces.Command.Flag; type Flags = Flag[]; export declare class DocOpts { private cmd; flagMap: { [index: string]: Flag; }; flagList: Flags; constructor(cmd: Interfaces.Command); static generate(cmd: Interfaces.Command): string; generateElements(elementMap: { [index: string]: string; } | undefined, flagGroups: Flags): string[]; } export {};