import { CardType } from '../index'; import { PaymentType } from '../utils/misc'; interface PaymentMethodProps { cardsList: CardType[]; setPayTypeValue: (item: PaymentType) => void; payTypeValue: string; } export declare const PaymentMethod: (props: PaymentMethodProps) => import("react/jsx-runtime").JSX.Element; export {};