UNPKG

755 BTypeScriptView Raw
1import type * as React from 'react';
2import Group from './Group';
3import type { InputProps, InputRef } from './Input';
4import Password from './Password';
5import Search from './Search';
6import TextArea from './TextArea';
7export type { GroupProps } from './Group';
8export type { InputProps, InputRef } from './Input';
9export type { PasswordProps } from './Password';
10export type { SearchProps } from './Search';
11export type { TextAreaProps } from './TextArea';
12interface CompoundedComponent extends React.ForwardRefExoticComponent<InputProps & React.RefAttributes<InputRef>> {
13 Group: typeof Group;
14 Search: typeof Search;
15 TextArea: typeof TextArea;
16 Password: typeof Password;
17}
18declare const Input: CompoundedComponent;
19export default Input;