import { InputProps } from 'antd'; import { GroupProps, PasswordProps } from 'antd/lib/input'; import { InputRef } from 'rc-input'; import React, { FC, ForwardRefExoticComponent, RefAttributes } from 'react'; import { InputSearchProps } from './Search'; import { InputTextAreaProps } from './TextArea'; export interface Props extends InputProps { trim?: boolean; } type InputType = ForwardRefExoticComponent> & { Search: FC; TextArea: FC; Password: FC; Group: FC; }; export type RefInternalInput = (props: React.PropsWithChildren & { ref?: React.Ref; }) => React.ReactElement; declare const ForwardExternalInput: InputType; export default ForwardExternalInput;