import type { PaymentForm, CardInputElement, HostElement } from './types.js'; export declare const createCardFormFields: (hostElement: HostElement, { formId, cardNumberId, cardExpirationId, cardCVVId, cardHolderNameId, postalCodeId }: { formId: string; cardNumberId: string; cardExpirationId: string; cardCVVId: string; cardHolderNameId: string; postalCodeId: string; }) => void; export declare const getPaymentForm: (hostElement: HostElement) => PaymentForm; export declare const getCardNumberInput: (testId: string, hostElement: HostElement) => CardInputElement; export declare const getCardExpirationInput: (testId: string, hostElement: HostElement) => CardInputElement; export declare const getCardCvvInput: (testId: string, hostElement: HostElement) => CardInputElement; export declare const getCardHolderInput: (testId: string, hostElement: HostElement) => CardInputElement; export declare const getPostalCodeInput: (testId: string, hostElement: HostElement) => CardInputElement; export declare const getEmailInput: (testId: string, hostElement: HostElement) => CardInputElement;