import * as React from 'react'; import { InputRef } from '../Input/Input'; export interface TransferSearchProps { prefixCls?: string; placeholder?: string; onChange?: (e: React.FormEvent) => void; handleClear?: (e: React.MouseEvent) => void; value?: any; } export default class Search extends React.Component { static defaultProps: { placeholder: string; }; input: InputRef; handleChange: (e: React.ChangeEvent) => void; handleClear: (e: React.MouseEvent) => void; render(): JSX.Element; }