import React from "react"; import { TextInputProps } from "../TextInput"; interface InputProps { additionalClasses?: string[]; isValid: boolean; describedBy: string; textInputProps: TextInputProps; getInputAppearance: (props: TextInputProps) => string; getInputElementProps: (textInputProps: TextInputProps) => TextInputProps; } export declare const Input: ({ additionalClasses, isValid, describedBy, textInputProps, getInputAppearance, getInputElementProps }: InputProps) => React.JSX.Element; export {};