import { Amount, BillPayConfig, InternationalSubConfigCodeType, InternationalTransferFeeBearerPaymentMethod } from '@zeniai/client-epic-state'; export interface Props { internationalMethods: BillPayConfig[]; invoiceTotalAmount: number; isOurDisabled: boolean; isShaDisabled: boolean; name: string; internationalTransferFeeBearerPaymentMethodValue?: InternationalTransferFeeBearerPaymentMethod; } declare const ShaOurSection: ({ isShaDisabled, isOurDisabled, name, invoiceTotalAmount, internationalMethods, internationalTransferFeeBearerPaymentMethodValue, }: Props) => import("react/jsx-runtime").JSX.Element; /** * Helpers */ export declare const getPaymentMethodFee: (internationalMethods: BillPayConfig[], internationalTransferFeeBearerPaymentMethodValue?: InternationalSubConfigCodeType) => Amount; export default ShaOurSection;