import color from './color'; export type LoggerType = 'debug' | 'info' | 'warn' | 'error'; export { color }; export declare class Logger { brandName: string; fullName: string; logLevel: string; isLogTime: boolean; setup({ brandName, logLevel, fullName }: any): void; time: (...args: any[]) => void | false; timeEnd: (...args: any[]) => void | false; debug: (...args: any[]) => void | false; info: (...args: any[]) => void | false; warn: (...args: any[]) => void | false; error: (...args: any[]) => void | false; blue: (msg: string) => void; cyan: (msg: string) => void; magenta: (msg: string) => void; green: (msg: string) => void; yellow: (msg: string) => void; red: (msg: string) => void; sysError: (msg: string) => void; link: (msg: string) => string; title: (msg: string) => void; } declare const _default: Logger; export default _default;