import { LogDate } from './LogDate'; import { LogLevel } from './LogLevel'; export declare class Log { level: LogLevel; date: LogDate; channel: string; title: string; messsage: string | any; instanceUuid: string; constructor(level: LogLevel, date: LogDate, channel: string, title: string, messsage: string | any, instanceUuid?: string); }