Repository URL to install this package:
|
Version:
2.1.14 ▾
|
import { ReactNode } from 'react'
import { CommonState } from '@skava/ui/dist/state'
export interface PaymentWithBillingAddressRenderProp extends Function {
(props: PaymentWithBillingAddressProps, state?: CommonState): ReactNode
}
export interface PaymentWithBillingAddressProps {
className?: string
children?: ReactNode
dataQa?: string
// renderProps
renderForm?: PaymentWithBillingAddressRenderProp
renderBox?: PaymentWithBillingAddressRenderProp
renderWrapper?: PaymentWithBillingAddressRenderProp
}