import { EventLogLevel, IEventLog, JSONObject } from '../util/types'; import { Model } from './model'; export declare class EventLog extends Model implements IEventLog { static endpoint: string; static attributes: string[]; message: string; level: EventLogLevel; info?: JSONObject; type?: string; timestamp?: Date; constructor(); getAttributes(): string[]; }