import * as React from 'react'; import type { PaymentCardProps } from './types'; declare class PaymentCard extends React.Component { static defaultProps: { autoComplete: string; autoFocus: boolean; disabled: boolean; name: string; error: boolean; onBlur: () => void; onFocus: () => void; overrides: {}; required: boolean; size: string; startEnhancer: null; endEnhancer: null; }; caretPosition: number; inRef: HTMLInputElement | HTMLTextAreaElement | null; constructor(props: PaymentCardProps); componentDidUpdate(prevProps: PaymentCardProps): void; render(): import("react/jsx-runtime").JSX.Element; } export default PaymentCard;