import { type Address } from 'viem'; import { type SimulateContractRequest } from '../utils/index.js'; import type { Execute, paths } from '../types/index.js'; export type PriceBody = NonNullable; export type PriceBodyOptions = Omit; export type GetPriceParameters = { originChainId: number; originCurrency: string; destinationChainId: number; destinationCurrency: string; tradeType: PriceBodyOptions['tradeType']; amount?: string; user?: Address; recipient?: Address; options?: Omit; txs?: (NonNullable[0] | SimulateContractRequest)[]; }; /** * Method to get the price * @param data - {@link GetPriceParameters} */ export declare function getPrice(parameters: GetPriceParameters): Promise; //# sourceMappingURL=getPrice.d.ts.map