/// import type { ElementProps } from "../../../types"; /** * `CardNumber` is a component that renders the Card Number input field. * It uses the Digital River context to create and manage the Card Number element. * @component * @see https://docs.digitalriver.com/digital-river-api/payments/payment-integrations-1/digitalriver.js/payment-methods/credit-cards * * @param {ElementProps} props - The properties that define the behavior of the Card Number component. * @param {string} [props.elementId='dr-card-number'] - The ID of the HTML element where the Card Number component will be mounted. Defaults to 'dr-card-number'. * @param {Function} [props.onChange=() => {}] - The function to be called when the Card Number component changes. Defaults to an empty function. * @param {Object} [props.options={}] - The options for the Card Number component. Defaults to an empty object. * * @returns {JSX.Element} A span element with the specified ID where the Card Number component will be mounted. */ export declare const CardNumber: ({ elementId, onChange, options }: ElementProps) => JSX.Element; //# sourceMappingURL=cardNumber.d.ts.map