import { AxiosResponse } from "axios"; import { IAxiosProps } from "../@types/quotation"; import AuthorizationToken from "./AuthorizationToken"; export default class CustomAxios extends AuthorizationToken { constructor(UBIT_ACCESS_KEY?: string, UBIT_SECRET_KEY?: string); private newAbortSignal; protected getData({ method, url, }: IAxiosProps): Promise>; protected getAuthData({ method, url, }: IAxiosProps): Promise>; protected getAuthParamData({ method, url, params, }: IAxiosProps): Promise>; }