import * as plugins from './smartlog.plugins.js';
import { Smartlog } from './smartlog.classes.smartlog.js';
export declare class LogGroup {
    smartlogRef: Smartlog;
    transactionId: string;
    groupId: string;
    constructor(smartlogInstance: Smartlog, transactionIdArg: string);
    log(logLevelArg: plugins.smartlogInterfaces.TLogLevel, logMessageArg: string, logDataArg?: any): void;
}
