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