import { Input as InnerInput } from './input'; import { Password } from './password'; import { Search } from './search'; import type { TextArea as InnerTextArea } from './textarea'; type CompoundedComponent = typeof InnerInput & { TextArea: typeof InnerTextArea; Search: typeof Search; Password: typeof Password; }; export declare const Input: CompoundedComponent; export type { InputProps } from './input'; export type { PasswordProps } from './password'; export type { SearchProps } from './search'; export type { TextAreaProps } from './textarea';