/// import { type TextInputProps } from 'react-native'; import type { IconType, SizeType } from '../../utils/TypesUtil'; interface InputRef { clear: () => void; focus: () => void; blur: () => void; } export type InputTextProps = TextInputProps & { inputStyle?: TextInputProps['style']; icon?: IconType; disabled?: boolean; size?: Exclude; }; export declare const InputText: import("react").ForwardRefExoticComponent>; export {}; //# sourceMappingURL=index.d.ts.map