import { IAppStyle } from '../../theme'; import { FunctionComponent } from 'react'; export declare type IPaymentMethodProps = { id: string; isSelected: boolean; countryCode: string; }; export declare type IPaymentMethodStyle = IAppStyle; export declare type IPaymentMethod = FunctionComponent;