import { UserRole } from "./ui5Constants"; interface cookieAndAuth { xcsrf: string; cookies: string; } declare class ui5TestDataDef { createTestData(role: UserRole, testSetId: string, testCaseId: string): Promise; deleteTestData(role: UserRole, testCaseId: string, testSetId: string): Promise; private getUser; private _executeXsrfToken; _executeDeleteTestData(username: string, password: string, incoHeader: cookieAndAuth, testData: string, testCase: string): Promise; _executeTestData(username: string, password: string, incoHeader: cookieAndAuth, testData: string, testCase: string): Promise; } export declare let ui5TestData: ui5TestDataDef; export {};