import React from 'react'; import { CardProps, FormInstance } from 'antd'; import { BizQueryFormProps } from '../biz-form'; import { SearchFormItemProps } from './_util/createFormItems'; import { OmitStylesAndClassFuncType } from '../utils/types'; export interface SearchFormProps extends BizQueryFormProps { searchItems?: SearchFormItemProps[]; cardProps?: OmitStylesAndClassFuncType; } declare const SearchForm: React.ForwardRefExoticComponent>>; export default SearchForm;