import type { TextInputProps } from 'react-native'; import type { TSize, TStyle, TTextStyle, TVariant } from '../common/types'; export interface ITextInputProps extends TextInputProps { description?: string; placeholder?: string; size?: TSize; style?: TStyle; textStyle?: TTextStyle; variant?: TVariant; } //# sourceMappingURL=types.d.ts.map