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;
