/// import type { ElementProps } from "../../../types"; /** * `CardCvv` is a component that renders the Card CVV input field. * It uses the Digital River context to create and manage the Card CVV 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 CVV component. * @param {string} [props.elementId='dr-card-cvv'] - The ID of the HTML element where the Card CVV component will be mounted. Defaults to 'dr-card-cvv'. * @param {Function} [props.onChange=() => {}] - The function to be called when the Card CVV component changes. Defaults to an empty function. * @param {Object} [props.options={}] - The options for the Card CVV component. Defaults to an empty object. * * @returns {JSX.Element} A span element with the specified ID where the Card CVV component will be mounted. */ export declare const CardCvv: ({ elementId, onChange, options }: ElementProps) => JSX.Element; //# sourceMappingURL=cardCvv.d.ts.map