import LuxCore from "../src/lux"; import { AxiosRequestConfig } from "axios"; import { APIBase, RequestResponseData } from "../src/common/apibase"; export declare class TestAPI extends APIBase { TestGET: (input: string, path?: string, axiosConfig?: AxiosRequestConfig) => Promise; TestDELETE: (input: string, path?: string, axiosConfig?: AxiosRequestConfig) => Promise; TestPOST: (input: string, path?: string, axiosConfig?: AxiosRequestConfig) => Promise; TestPUT: (input: string, path?: string, axiosConfig?: AxiosRequestConfig) => Promise; TestPATCH: (input: string, path?: string, axiosConfig?: AxiosRequestConfig) => Promise; protected _respFn: (res: RequestResponseData) => any; protected _TestMethod: (method: string, path?: string, getdata?: object, postdata?: object, axiosConfig?: AxiosRequestConfig) => Promise; constructor(lux: LuxCore, endpoint?: string); } //# sourceMappingURL=testlib.d.ts.map