import { HTMLInputTypeAttribute } from 'react';
import { ElementProps } from '../Form/Element';
import { UIComponent } from '../ui-types';
export interface InputProps extends UIComponent> {
onChangeText?: (text: string) => void;
type?: HTMLInputTypeAttribute;
wait?: boolean;
children?: React.ReactNode;
disabled?: boolean;
value?: string;
}
declare const Input: import('react').ForwardRefExoticComponent>;
export default Input;