import { LOG_PRIORITY, RequestOriginMeta } from '../..'; export declare class LogBaseDto { priority?: LOG_PRIORITY; /** * A topic pointing to a specific action or event type * users.create * users.transfer * users.delete * notifications.send.push * devices.register * devices.updates.roles */ topic?: string; message: string; content?: any; requestOriginMeta?: RequestOriginMeta; }