/// import { BaseInputProps } from './Input'; import Label from './Label'; import TextArea from './TextArea'; import Password from './Password'; import MultiSelectInput from './MultiSelectInput'; import AutoComplete from './AutoComplete'; export interface InputLocale { placeholder?: string; } interface CompoundedComponent extends React.ForwardRefExoticComponent> { Label: typeof Label; TextArea: typeof TextArea; Password: typeof Password; MultiSelectInput: typeof MultiSelectInput; AutoComplete: typeof AutoComplete; __ACUD_CHECKBOX: boolean; } declare const Input: CompoundedComponent; export default Input;