import { type QuoteResponse } from "@defuse-protocol/one-click-sdk-typescript"; import { type OriginKey, type StableKey, type DestKey } from "./registry.js"; export type QuoteDepositParams = { originChain: OriginKey; originAsset: StableKey; destinationAsset: DestKey; amount: string; recipient: string; refundTo: string; slippageTolerance?: number; minAmountOut: string; deadline?: string; dry?: boolean; }; export declare function configure(opts: { jwt?: string | (() => Promise); baseUrl?: string; }): void; export declare function quoteDeposit(p: QuoteDepositParams): Promise;