UNPKG

@mass001/pro-components

Version:

A React Pro Components library based on Arco Design, including CTable and more

11 lines 363 B
import React from 'react'; import { SearchConfig } from './types'; interface SearchFormProps { searchConfig: SearchConfig[]; onSearch?: (values: Record<string, any>) => void; onReset?: () => void; defaultCollapsed?: boolean; } declare const SearchForm: React.FC<SearchFormProps>; export default SearchForm; //# sourceMappingURL=SearchForm.d.ts.map