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