import { type IDiffNode } from '../../lib/ConfigSyncManager'; /** * Format a config value for CLI output, falling back to util.inspect when JSON fails. */ declare const formatConfigValue: (value: unknown) => string; /** * Print a diff tree with colorized status labels for conflict resolution output. */ declare const printDiffTree: (node: IDiffNode, indent?: number) => void; export { formatConfigValue, printDiffTree };