PromoCursed/node_modules/antd/lib/transfer/search.d.ts

12 lines
338 B
TypeScript
Raw Normal View History

2024-08-20 23:25:37 +04:00
import * as React from 'react';
export interface TransferSearchProps {
prefixCls?: string;
placeholder?: string;
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
handleClear?: () => void;
value?: string;
disabled?: boolean;
}
declare const Search: React.FC<TransferSearchProps>;
export default Search;