import React from 'react'; import { FormatMessage } from '@comparaonline/react-intl-hooks'; import { AllowedPaymentMethod } from '../../../types/FormData'; interface CardButtonOptionItem { description: (t: FormatMessage) => string; image: React.ReactElement; imageUnchecked: React.ReactElement; label: (t: FormatMessage) => string; secondaryLabel: (t: FormatMessage) => string; value: string; secondarySubLabel?: (t: FormatMessage) => string; } export declare const getPaymentMethodAsOptions: (paymentMethods: AllowedPaymentMethod[]) => CardButtonOptionItem[]; export {};