import { UseFormRegisterReturn } from 'react-hook-form'; import { DetailedHTMLProps, InputHTMLAttributes } from 'react'; declare type Props = { label?: string; tooltip?: string; helptext?: string; inputClassName?: string; LeadingIcon?: () => JSX.Element; TrailingIcon?: () => JSX.Element; innerRef?: UseFormRegisterReturn; inputType?: 'default' | 'success' | 'warning' | 'error'; }; export default function Input(props: DetailedHTMLProps, HTMLInputElement> & Props): JSX.Element; export {}; //# sourceMappingURL=Input.d.ts.map