import request from 'supertest'; export declare class Stadius { private readonly _baseUrl; private readonly _commonHeaders; private readonly myconsole; private readonly inspectConfig; private getUrl; constructor(_baseUrl?: string, _commonHeaders?: Record); PATCH(url: string, headers: Record | undefined, body: any, attachments?: Record): Promise; PUT(url: string, headers: Record | undefined, body: any, attachments?: Record): Promise; POST(url: string, headers: Record | undefined, body: any, attachments?: Record): Promise; GET(url: string, headers?: Record, queryParams?: Record): Promise; DELETE(url: string, headers?: Record): Promise; POST_FILE(url: string, headers: Record, file: string, fieldName?: string): Promise; static addHeaders(req: request.Test, headers: Record): request.Test; private print; private send; private printToFile; static getDateTime(): string; } declare const _default: Stadius; export default _default;