import React from 'react'; export interface TransferSearchProps { prefixCls?: string; placeholder?: string; onChange?: (e: React.FormEvent) => void; handleClear?: (e: React.MouseEvent) => void; value?: string; disabled?: boolean; } declare const transferSearch: React.FC; export default transferSearch;