import { ReactElement, FC } from 'react'; import { TextInputProps, StyleProp, ViewStyle } from 'react-native'; import { TextFieldSize } from './types.js'; interface TextFieldProps extends TextInputProps { startSlot?: ReactElement; endSlot?: ReactElement; size?: TextFieldSize; borderRadiusRatio?: number; disabled?: boolean; error?: boolean; endSlotStyle?: StyleProp; startSlotStyle?: StyleProp; wrapperStyle?: StyleProp; } declare const TextField: FC; export { TextField, type TextFieldProps };