/** * CLI helpers — shared utilities for all CLI commands. */ import type { SevoConfig } from '../config.js'; /** Default config filename. */ export declare const CONFIG_FILE = "sevo.json"; /** Locate sevo.json by walking up from cwd. Returns absolute path or null. */ export declare function findConfigFile(startDir?: string): string | null; /** Load and validate sevo.json. Throws on missing/invalid. */ export declare function loadConfig(configPath?: string): SevoConfig; /** Resolve the project root (directory containing sevo.json). */ export declare function projectRoot(configPath?: string): string; /** Pretty-print JSON to stdout. */ export declare function printJson(data: unknown): void; /** Print a simple key-value table. */ export declare function printTable(rows: Array<[string, string]>): void; /** Format a date string for display. */ export declare function formatDate(iso: string): string; //# sourceMappingURL=helpers.d.ts.map