export declare class Logger {
    private readonly createFile;
    private subMethod;
    constructor(method: string, trackId?: string);
    debug(message: string, payload?: any): void;
    info(message: string, payload?: any): void;
    error(message: any): void;
    addSubMethod(subMethod: string): void;
    cleanSubMethod(): void;
    private transformMsg;
}
