import { StripeCheckout } from './checkout';
import { StripePaymentIntent } from './intent';
export { StripeCheckout, StripePaymentIntent };
export declare const createStripeClient: (secretKey: string) => {
    checkout: StripeCheckout;
    paymentIntent: StripePaymentIntent;
};
