import { paint } from './paint'; import chalk from 'chalk'; declare const log: Log; export { log }; export interface Log { (strings: TemplateStringsArray | Error | string, ...messages: any[]): void; conflict: Log; pass: Log; e: Log; error: Log; i: Log; info: Log; t: Log; timestamp: Log; success: Log; warn: Log; fail: Log; x: Log; invalid: Log; o: Log; valid: Log; ok: Log; d: Log; del: Log; delete: Log; a: Log; add: Log; tree: (object: object | JSON) => void; paint: typeof paint; chalk: typeof chalk; }