import { default as React, InputHTMLAttributes, TextareaHTMLAttributes } from 'react';
export type InputProps = InputHTMLAttributes & TextareaHTMLAttributes & {
Title?: string;
TextHelp?: string;
placeholder?: string;
error?: boolean;
warning?: boolean;
onChange?: React.FormEventHandler;
maxLength?: number;
disabled?: boolean;
readOnly?: boolean;
loading?: boolean;
cols?: number;
rows?: number;
};
export declare const InputFluid: ({ TextHelp, Title, type, rows, warning, maxLength, error, disabled, cols, readOnly, loading, placeholder, id, name, onChange, }: InputProps) => import("react/jsx-runtime").JSX.Element;