import React from 'react'; import { OptionType } from '@chargify/custom-ui-components'; import type { PaymentProfile } from '../../models/paymentProfile'; export type PaymentProfilesProps = { activePaymentProfile: PaymentProfile; paymentProfiles: PaymentProfile[]; onSelectPaymentProfileOption: (option: OptionType, id: number) => void; onCreatePaymentProfile: (option: OptionType) => void; availablePaymentMethods: OptionType[]; goBack: () => void; isLoading: boolean; isError: boolean; onRetry: () => void; }; declare const PaymentProfiles: ({ onRetry, onSelectPaymentProfileOption, onCreatePaymentProfile, availablePaymentMethods, goBack, isLoading, activePaymentProfile, paymentProfiles, isError, }: PaymentProfilesProps) => React.JSX.Element; export default PaymentProfiles;