///
interface Props {
name: string;
label?: string;
multiline?: T;
}
declare type InputProps = JSX.IntrinsicElements['input'] & Props;
declare type TextAreaProps = JSX.IntrinsicElements['textarea'] & Props;
export default function Input({ name, label, multiline, ...rest }: InputProps | TextAreaProps): JSX.Element;
export {};