import React, { InputHTMLAttributes } from 'react';
import { ErrorType } from '../../../utils/common';
export declare type InputProps = InputHTMLAttributes & {
label?: string;
invalid?: boolean;
error?: ErrorType;
inputMode?: 'text' | 'none' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
tooltipContentKey?: string;
};
declare const Input: React.ForwardRefExoticComponent & {
label?: string | undefined;
invalid?: boolean | undefined;
error?: ErrorType | undefined;
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
tooltipContentKey?: string | undefined;
} & React.RefAttributes>;
export { Input };
//# sourceMappingURL=Input.d.ts.map