/**
 * Shared CLI formatting utilities
 *
 * Common formatting functions used across CLI command modules.
 */
/**
 * Format a table row with padding
 */
export declare function formatRow(label: string, value: string, width?: number): string;
/**
 * Format currency value
 */
export declare function formatCost(cost: number, currency?: string): string;
