//#region src/core/output/display-value.d.ts /** * Shared runtime-value formatting for human-readable output. * * Used by help text and table rendering so default values and structured cells * stringify consistently across the CLI surface. * * @module dreamcli/core/output/display-value * @internal */ /** * Format an unknown runtime value for human-readable output. * * @param value - The value to format (any type). * @returns A string representation suitable for table cells and help text. */ declare function formatDisplayValue(value: unknown): string; //#endregion export { formatDisplayValue };