import React from 'react'; import 'jb-payment-input/bank-indicator'; import type { BankIndicatorWebComponent } from 'jb-payment-input/bank-indicator'; declare module "react" { namespace JSX { interface IntrinsicElements { 'bank-indicator': BankIndicatorType; } interface BankIndicatorType extends React.DetailedHTMLProps, BankIndicatorWebComponent> { "class"?: string; } } } declare const BankIndicator: React.ForwardRefExoticComponent>; export type Props = { className?: string; slot?: string; prefix?: string; }; export { BankIndicator };