import type { LoggingConfig, LoggerTransport } from './types';
export declare class LoggingService {
    static init(config: LoggingConfig | any): Promise<void>;
    static get(): any;
}
export declare function createCustomTransport(transform: any): LoggerTransport;
