import { type ChangeEvent, type JSX } from 'react'; import type { Order, PaymentMethod } from '@commercelayer/sdk'; import type { ChildrenFunction } from '../../typings/index'; interface ChildrenProps extends Omit { checked: boolean; handleOnChange: (event: ChangeEvent) => Promise; } interface TOnChangeParams { payment?: PaymentMethod | Record; order?: Order; } type Props = { children?: ChildrenFunction; onChange?: (params: TOnChangeParams) => void; } & JSX.IntrinsicElements['input']; export declare function PaymentMethodRadioButton(props: Props): JSX.Element; export default PaymentMethodRadioButton;