import { FlagInput } from "@oclif/core/interfaces"; import { Printer } from "../Printer.js"; declare const outputFormats: readonly ["txt", "json", "yaml"]; type OutputFormat = (typeof outputFormats)[number]; export interface GetOptions { outputFormat: OutputFormat; } export declare class GetFormatter { static get flags(): FlagInput; private defaultPrinter; constructor(defaultPrinter?: Printer); log(output: T, opts?: GetOptions): void; } export {};