import { default as React } from 'react'; import { BusinessEntityType, CustomerType, ICustomerPaymentMethod } from '../../types/customer.types'; export declare const StatusTag: ({ flag, type, dataTestId, }: { flag: boolean; type: "expired" | "default"; dataTestId?: string; }) => React.JSX.Element | null; export declare const CardExpiry: ({ paymentMethod, visible, }: { paymentMethod?: ICustomerPaymentMethod; visible: boolean; }) => React.JSX.Element; export declare const BrandImage: ({ type, className, }: { type: string; className: string; }) => React.JSX.Element; declare const ExistingPaymentMethods: ({ businessEntityId, customerId, paymentMethods, allowUpdate, onSuccess, onError, }: { businessEntityId: BusinessEntityType; customerId: CustomerType; paymentMethods?: ICustomerPaymentMethod[]; allowUpdate?: boolean; onSuccess?: () => void; onError?: () => void; }) => React.JSX.Element; export default ExistingPaymentMethods;