import { ReactElement, HTMLInputTypeAttribute } from 'react';
type TextInputProps = {
title?: string;
value: string;
placeholder?: string;
width?: string | number;
leftIcon?: ReactElement;
disabled?: boolean;
type?: HTMLInputTypeAttribute;
onValueChange?: (value: string) => void;
};
declare const TextInput: (props: TextInputProps) => JSX.Element;
export default TextInput;