import { Request, Response } from "../../client/index"; import { Reporter as JestReporter } from "jest-allure/src/Reporter"; export declare abstract class Reporter { static directory(): string; static instance(): JestReporter; static addAttachment(...args: Parameters): void; static startStep(...args: Parameters): void; static endStep(...args: Parameters): void; static attachFile(title: string, filename: string, attachment: any, mimetype: string): void; static attachJSON(title: string, filename: string): void; static attachRequest(request: Request, shouldAttachBody?: boolean): void; static attachResponse(response: Response): void; }