import { BotContext } from '@/types' import { StripePaymentForm } from './StripePaymentForm' import { PaymentInputBlock, RuntimeOptions } from '@indite.io/schemas' type Props = { context: BotContext options: PaymentInputBlock['options'] & RuntimeOptions onSuccess: () => void onTransitionEnd: () => void } export const PaymentForm = (props: Props) => ( )