declare class Logger { frameChar: string; log(message: string, title?: string, color?: string): Promise; warn(message: string, options?: {}): void; error(message: string, options?: {}): void; frameMessage(message: string, title: string): string; } declare const logger: Logger; export default logger;