import type { ExtendedSupportOptions } from '../installLogsCollector.types';
export default class LogFormat {
    protected config: ExtendedSupportOptions;
    protected messageProcessors: Array<(log: any) => string>;
    constructor(config: ExtendedSupportOptions);
    formatXhrLog(xhrLog: any): string;
    formatXhrData(body: any): Promise<string>;
}
