/** * CLI logging utility using proc-log * * This module wraps proc-log to provide consistent logging across the CLI. * proc-log emits events on process, allowing tests to silence output by not * listening to the 'log' event, while the CLI can attach a listener to display output. * * Usage: * import log from './log.ts' * log.info('Hello world') // standard output * log.error('Error message') // error output * log.warn('Warning message') // warning output */ declare const _default: { info: (...args: unknown[]) => void; warn: (...args: unknown[]) => void; error: (...args: unknown[]) => void; verbose: (...args: unknown[]) => void; silly: (...args: unknown[]) => void; }; export default _default; //# sourceMappingURL=log.d.ts.map