import React, { InputHTMLAttributes } from 'react'; interface FormInputProps { label?: string; inputError?: string; } export declare const UiFormInput: React.FC>; export {};