import type { Context } from '../context.js'; export interface StripeConfig { apiKey: string; webhookSecret?: string; currency?: string; } export declare function stripePlugin(config: StripeConfig): (ctx: Context, next: () => Promise) => Promise; //# sourceMappingURL=stripe.d.ts.map