import type { Asset } from '../../Openfort/types'; export type OnrampQuote = { provider: string; sourceAmount: string; sourceCurrency: string; destinationAmount: string; destinationCurrency: string; destinationNetwork: string; fees: Array<{ amount: string; currency: string; type: string; }>; exchangeRate: string; }; type GetAllQuotesParams = { token: Asset; chainId: number; publishableKey: string; sourceCurrency: string; sourceAmount: string; }; /** * Get quotes from all available providers * Calls the backend without specifying a provider to get quotes from all providers */ export declare const getAllQuotes: (params: GetAllQuotesParams) => Promise; export {};