import { InputHTMLAttributes } from 'react'; import { TTextAlignLC } from '../../../types/TTextAlignLC'; export type TTextInput = { align?: TTextAlignLC; type?: 'text' | 'email' | 'tel' | 'url'; }; export type TTextInputNativeAttrs = Omit, 'type'>; export type TTextInputWithNativeAttrs = TTextInput & TTextInputNativeAttrs;