/** @jsxImportSource @emotion/react */ import React, { HTMLAttributes } from 'react'; interface CardDataInputProps { value?: string; id?: string; name: string; type?: string; placeholder?: string; onChange(e: React.ChangeEvent): void; onClickHandler?(e: React.MouseEvent): void; onKeyDownHandler?(e: React.KeyboardEvent): void; label?: string; autocomplete?: string; inputmode?: HTMLAttributes['inputMode']; descriptionId?: string; description?: string; pattern?: string; error?: string; maxLength?: number; required?: string; masked?: string; wrap?: boolean; autoFocus?: boolean; secret?: boolean; } declare const CardDataInput: (props: CardDataInputProps) => JSX.Element; export default CardDataInput;