type LogType = 'info' | 'warn' | 'error' | 'ok' | 'util'; export declare const cosmographLog: (message: string | Error | unknown, fn?: string, type?: LogType) => void; export {};