import { TextInput } from 'react-native'; import { BaseInputProps, ExtendedTextInputProps } from './types'; interface TextInputBaseProps extends BaseInputProps { /** Whether input is focused */ focused?: boolean; /** Additional TextInput props */ textInputProps?: ExtendedTextInputProps; /** External ref passthrough */ inputRef?: any; /** Force secure entry regardless of type */ secureTextEntry?: boolean; } export declare const TextInputBase: import("../../core/factory/factory").PlatformBlocksComponent<{ props: TextInputBaseProps; ref: TextInput; }>; export {};