UNPKG

tea-material-pro-table

Version:

Tea ProTable

17 lines (16 loc) 525 B
import { FieldConfig, ProFormProps } from 'tea-material-pro-form'; import { ProTableProps } from './types'; export interface ISearchForm { searchable?: ProTableProps['searchable']; onRef?: ProFormProps['onRef']; onFinish?: ProFormProps['onFinish']; onReset?: ProFormProps['onReset']; fields?: FieldConfig[]; } export declare function SearchForm({ searchable, onRef, onFinish, onReset, fields }: { searchable: any; onRef: any; onFinish: any; onReset: any; fields: any; }): JSX.Element;