import type { Asset } from '../../Openfort/types'; type StripeOnrampResponse = { provider: string; sessionId: string; clientSecret: string; status: string; onrampUrl: string; }; type CreateStripeSessionParams = { destinationCurrency: string; destinationNetwork: string; destinationAddress: string; sourceAmount?: string; sourceCurrency?: string; redirectUrl?: string; }; export declare const isStripeSupported: (token: Asset) => boolean; /** * Create a Stripe onramp session * Calls backend API to create a prefilled session with wallet addresses and amounts */ export declare const createStripeSession: (params: Omit & { token: Asset; chainId: number; publishableKey: string; }) => Promise; export {};