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