import { FC } from 'react'; interface CreditButtonProps { userId?: string; token?: string; stripePublishableKey?: string; description?: string[]; paymentBanefits?: any; bgColor?: string; fontColor?: string; mainLayout?: number; pymentGatewayLayout?: number; buttonBgColor?: string; btnTextColor?: string; inputBgColor?: string; width?: string; forEntityId: string; uniqueUserId?: string; uniqueEmailId?: string; } declare const Payment: FC; export default Payment;