import type { RelayFeeEstimate, RelayRequestOptions, RelayResult, RelaySwapParams, RelayTeleportParams, SwapQuote, SwapQuoteParams, SwapResult } from "./types.js"; /** * Submit a teleport request to the relay node. */ export declare function submitRelayTeleport(relayUrl: string, params: RelayTeleportParams, options?: RelayRequestOptions): Promise; /** * Fetch a fee estimate from the relay node. */ export declare function estimateRelayFee(relayUrl: string, chainId: number, options?: RelayRequestOptions): Promise; /** * Fetch a swap quote from the relay node. */ export declare function fetchSwapQuote(relayUrl: string, params: SwapQuoteParams, options?: RelayRequestOptions): Promise; /** * Submit a token-to-native swap request to the relay node. */ export declare function submitRelaySwap(relayUrl: string, params: RelaySwapParams, options?: RelayRequestOptions): Promise; //# sourceMappingURL=relay.d.ts.map