import { Argument } from './Argument'; import { Option } from './Option'; export type UsageFormat = 'line' | 'short' | 'multiline'; export type UsageFormatOptions = { format?: UsageFormat; indent?: string; }; export declare class UsageFormatter { static format(args: Argument[], options: Option[], { format, indent }: UsageFormatOptions): string; } //# sourceMappingURL=UsageFormatter.d.ts.map