import { FeesRequest, FeesResponse } from "@0xproject/connect"; import { Price } from "../models/Price"; import { RelayerConnection } from "./RelayerConnection"; export declare class AmadeusRelayerConnection implements RelayerConnection { private httpClient; private axiosInstance; constructor(relayerUrl: string); getFeesAsync(request: FeesRequest): Promise; getPrice(tokenFromAddress: string, tokenToAddress: string, trader: string): Promise; }