import type { ReactNode } from 'react'; export interface CodeInputProps { chars?: number; disabled?: boolean; error?: ReactNode; name: string; onBlur?: () => void; onChange?: (value: string) => void; onFocus?: () => void; value?: string; testId?: string; }