import type { CommonInputProps } from '../types'; export interface DateInputProps extends CommonInputProps { autoComplete?: 'bday' | 'cc-exp'; defaultValue?: string; onBlur?: () => void; onChange?: (value: string) => void; onFocus?: () => void; value?: string; testId?: string; }