import React from 'react'; import { BaseProps } from 'jb-input/react'; import 'jb-payment-input'; import { JBPaymentInputWebComponent, PaymentInputType } from 'jb-payment-input'; declare module "react" { namespace JSX { interface IntrinsicElements { 'jb-payment-input': JBPaymentInputType; } interface JBPaymentInputType extends React.DetailedHTMLProps, JBPaymentInputWebComponent> { "class"?: string; "type"?: string; "label"?: string; "message"?: string; "placeholder"?: string; } } } declare const JBPaymentInput: React.ForwardRefExoticComponent & import("jb-input/react").JBInputAttributes & { className?: string; children?: React.ReactNode | React.ReactNode[]; } & { inputType?: PaymentInputType | null; separator?: string | null; } & React.RefAttributes>; export type Props = BaseProps & { inputType?: PaymentInputType | null; separator?: string | null; }; export { JBPaymentInput };