import { SearchProps } from 'antd/lib/input'; import { InputRef } from 'rc-input'; import React from 'react'; export interface InputSearchProps extends SearchProps { trim?: boolean; } export type RefInternalInputSearch = (props: React.PropsWithChildren & { ref?: React.Ref; }) => React.ReactElement; declare const ForwardExternalInputSearch: React.ForwardRefExoticComponent>; export default ForwardExternalInputSearch;