import { FC, InputHTMLAttributes } from 'react'; interface WeUIFormTextInputProps extends InputHTMLAttributes { label: string; adornment?: any; } export declare const WeUIFormTextInput: FC; export {};