export declare const OUTPUT_FORMATS: readonly ["json", "table", "tsv", "plain"]; export type OutputFormat = (typeof OUTPUT_FORMATS)[number]; export interface GlobalOptions { format?: OutputFormat; json?: boolean; quiet: boolean; verbose: boolean; debug: boolean; } export interface CommandContext { options: GlobalOptions; } //# sourceMappingURL=index.d.ts.map