import type { ChildrenFunction } from '../../typings/index'; import type { JSX } from "react"; interface ChildrenProps extends Omit { labelName: string; } interface Props extends Omit { children?: ChildrenFunction; } export declare function PaymentMethodName(props: Props): JSX.Element; export default PaymentMethodName;