import React, { PropsWithoutRef, RefAttributes } from 'react'; import Textarea from "../textarea/textarea"; import InputPassword from "./password"; import { Props, defaultProps } from "./input-props"; declare type NativeAttrs = Omit, keyof Props>; export declare type InputProps = Props & typeof defaultProps & NativeAttrs; declare type InputComponent = React.ForwardRefExoticComponent & RefAttributes> & { Textarea: typeof Textarea; Password: typeof InputPassword; }; declare type ComponentProps = Partial & Omit & NativeAttrs; declare const _default: InputComponent; export default _default;