/// import { InputTypes, TypeTypes } from './types'; import { ThemeTypes } from "../theme/types"; export declare const TextInputType: ({ placeholder, activeBorderCol, type, handleChange, name, value, disabled, iconAfterInput, iconBeforeInput, activeBgCol, borderRadius, colour, handleOnBlur, handleOnFocus, borderCol, theme, ...rest }: InputTypes & { theme: ThemeTypes; }) => JSX.Element; export declare const PasswordInputType: ({ type, placeholder, handleChange, name, value, activeBgCol, activeBorderCol, borderRadius, colour, handleOnFocus, handleOnBlur, theme, borderCol, ...rest }: InputTypes & { theme: ThemeTypes; }) => JSX.Element; declare const Input: (props: TypeTypes & { theme: ThemeTypes; }) => JSX.Element; export default Input;