import { ErrorInfoFields, ReportFields } from './types';
export default class Base {
    logInfo: ErrorInfoFields & ReportFields & {
        collector: string;
    };
    traceInfo(logInfo?: ErrorInfoFields & ReportFields & {
        collector: string;
    }): void;
}
