1 | import type * as React from 'react';
|
2 | import Group from './Group';
|
3 | import type { InputProps, InputRef } from './Input';
|
4 | import Password from './Password';
|
5 | import Search from './Search';
|
6 | import TextArea from './TextArea';
|
7 | export type { GroupProps } from './Group';
|
8 | export type { InputProps, InputRef } from './Input';
|
9 | export type { PasswordProps } from './Password';
|
10 | export type { SearchProps } from './Search';
|
11 | export type { TextAreaProps } from './TextArea';
|
12 | interface 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 | }
|
18 | declare const Input: CompoundedComponent;
|
19 | export default Input;
|