import { Command } from "commander"; export type OutputFormat = "json" | "table" | "styled"; export declare function getOutputFormat(cmd: Command): OutputFormat; export declare function output(cmd: Command, data: unknown, opts?: { columns?: string[]; keyValue?: boolean; }): void; export declare function note(message?: string): void; export declare function noteLowQuota(quota: { limit: number; remaining: number; } | undefined): void; export declare function errorOutput(err: unknown): void;