interface StripePaymentIntentParams { publicApiKey: string; paymentIntentClientSecret: string; } type PaymentVerificationState = 'valid' | 'invalid' | 'processing'; type PaymentProcessingFeedback = { status: Exclude; message?: string; } | { status: 'invalid'; message: string; }; export declare function checkPaymentIntent({ publicApiKey, paymentIntentClientSecret }: StripePaymentIntentParams): Promise; export {};