import * as plugins from './smartlog.plugins.js';
export declare class LogRouter {
    /**
     * all log destinations
     */
    private logDestinations;
    constructor();
    addLogDestination(logDestination: plugins.smartlogInterfaces.ILogDestination): void;
    routeLog(logPackageArg: plugins.smartlogInterfaces.ILogPackage): Promise<void>;
}
