import { LogType } from "kamboja-core"; export declare class Logger { private type; constructor(type: LogType); private log(type, message); info(message: string): this; error(message: string): this; warning(message: string): this; newLine(): this; }