import React from "react"; interface BaseProps { id: string; placeholder?: string; label?: string; helperText?: string; successText?: string; errorText?: string; isSuccess?: boolean; tab?: string; postTab?: string; prefixIcon?: React.ReactNode; iconColor?: string; postfixButton?: React.ReactNode; postfix?: string; keyhint?: string; password?: boolean; hasError?: boolean; inputContainerClassName?: string; shouldFocus?: boolean; shouldSelect?: boolean; } type TextareaProps = BaseProps & { multiline: true; } & Omit, "id">; type InputProps = BaseProps & { multiline?: false; type?: string; } & Omit, "id">; type Props = TextareaProps | InputProps; export declare const Input: React.FC; export {};