import "jb-input";
import { type PaymentInputType } from './types';
import { JBInputWebComponent } from "jb-input";
export * from './types.js';
export * from './constants.js';
export declare class JBPaymentInputWebComponent extends JBInputWebComponent {
    #private;
    get paymentInputType(): PaymentInputType;
    set paymentInputType(value: PaymentInputType);
    get separatorString(): string;
    set separatorString(value: string);
    constructor();
    static get observedAttributes(): string[];
    attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
}
