import type ILogEntry from './ILogEntry'; import LogType from './LogType'; /** * Represents a Log entry * * @internal */ declare class LogEntry implements ILogEntry { moduleName: string; logFeature: string; logType: LogType; logProperties: Record | undefined; isIntentional: boolean | undefined; /** * Initializes a new instance of LogEntry * @param moduleName - the name of the module * @param logFeature - the name of the feature * @param logType - the log type * @param logProperties - optional property bag */ constructor(moduleName: string, logFeature?: string, logType?: LogType, logProperties?: Record, isIntentional?: boolean); /** * convert the log entry to string * @returns the serialized log entry */ toString(): string; } export default LogEntry; //# sourceMappingURL=LogEntry.d.ts.map