Repository URL to install this package:
|
Version:
2.0.18 ▾
|
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;
renderForm?: PaymentWithBillingAddressRenderProp;
renderBox?: PaymentWithBillingAddressRenderProp;
renderWrapper?: PaymentWithBillingAddressRenderProp;
}