///
import * as React from 'react';
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;
};
handleChange: (e: React.ChangeEvent) => void;
handleClear: (e: React.MouseEvent) => void;
render(): JSX.Element;
}