search.d.ts 338 B

1234567891011
  1. import * as React from 'react';
  2. export interface TransferSearchProps {
  3. prefixCls?: string;
  4. placeholder?: string;
  5. onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
  6. handleClear?: () => void;
  7. value?: string;
  8. disabled?: boolean;
  9. }
  10. declare const Search: React.FC<TransferSearchProps>;
  11. export default Search;