UNPKG

@commercelayer/react-components

Version:
11 lines (10 loc) 407 B
import type { ChildrenFunction } from '../../typings/index'; import type { JSX } from "react"; interface ChildrenProps extends Omit<Props, 'children'> { labelName: string; } interface Props extends Omit<JSX.IntrinsicElements['label'], 'children'> { children?: ChildrenFunction<ChildrenProps>; } export declare function PaymentMethodName(props: Props): JSX.Element; export default PaymentMethodName;