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