import React from "react"; import type { CardFieldOptions } from "../types"; type PayPalCardNameFieldProps = Omit & { containerStyles?: React.CSSProperties; containerClassName?: string; }; /** * `PayPalCardNameField` is a component that renders a name field using the PayPal Card Fields SDK. It must be used within a {@link PayPalCardFieldsProvider} component. * * @example * // Basic usage creating a name field * */ export declare const PayPalCardNameField: ({ containerStyles, containerClassName, placeholder, label, style, ariaDescription, ariaLabel, ariaInvalidErrorMessage, }: PayPalCardNameFieldProps) => JSX.Element | null; export {};