import React, { ComponentProps } from 'react'; import HostedField from '../HostedField'; type CardExpirationProps = { monthHtmlElementId?: string; yearHtmlElementId?: string; } & ComponentProps; declare const CardExpiration: ({ label, hasError, required, monthHtmlElementId, yearHtmlElementId, }: CardExpirationProps) => React.JSX.Element; export default CardExpiration;