import { InsightLogger, UnknownRecord } from './InsightLogger'; type LoggerFunc = (message?: string, data?: string | number | UnknownRecord, other?: UnknownRecord) => void; export declare class QuickLogger { emerg: LoggerFunc; error: LoggerFunc; warn: LoggerFunc; info: LoggerFunc; debug: LoggerFunc; protected insightLogger: InsightLogger; protected event: string; constructor(insightLogger: any, { event }: { event: any; }); private createLogFunc; } export {};