import { FormApi } from 'final-form'; import { Checkout } from '@comparaonline/cicl-funnel-schema'; import { PaymentMethod } from '../constants'; declare type GetPaymentMethodFromValues = (formValues: Partial) => PaymentMethod; export declare const getPaymentMethodFromValues: GetPaymentMethodFromValues; export declare const getPaymentMethodByFormApi: (formApi: FormApi) => PaymentMethod; declare type IsPaymentMethod = (formApi: FormApi) => boolean; export declare const isOneClick: IsPaymentMethod; export declare const isPAC: IsPaymentMethod; export declare const isPAT: IsPaymentMethod; export declare const isWebPay: IsPaymentMethod; export declare const isThirdPartySponsor: IsPaymentMethod; export declare const getAmountByPaymentMethod: (formApi: FormApi, asUF?: boolean | undefined) => string | undefined; export {};