import Input from "./input"; import Textarea from "../TextArea"; import InputPassword from "./input-password"; export declare type InputComponentType = typeof Input & { Textarea: typeof Textarea; Password: typeof InputPassword; }; export type { InputProps } from "./input"; export type { InputPasswordProps } from "./input-password"; declare const _default: InputComponentType; export default _default;