import type { LayoutProps, SpaceProps } from "styled-system"; import { type InputFieldProps } from "./InputField"; interface InputProps extends InputFieldProps, SpaceProps, LayoutProps { errorMessage?: string; errorList?: string[]; className?: string; } declare const Input: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default Input;