import type { Command } from '@oclif/core'; export type OutputFormat = 'human' | 'json'; export type NextStep = { command: string; }; export declare function renderData(command: Command, data: unknown, format: OutputFormat | string, humanRenderer: () => string): void; export declare function renderKeyValueBlock(entries: Array<[string, null | string | undefined]>): string; export declare function createNextSteps(commands: string[]): NextStep[]; export declare function renderNextSteps(commands: string[]): string; export declare function renderBlockWithNextSteps(body: string, commands: string[]): string;