import React from "react"; import { FormProps } from 'antd'; export interface FormFilterSchema { type: 'select' | 'rangeDate' | 'input'; name: string; label: string; placeholder?: string; api?: (params?: any) => Promise; options?: any[]; fieldNames?: { label: string; value: string; }; isMultiple?: boolean; dataNames?: { label: string; value: string; }; keys?: string[]; rules?: any[]; maxCount?: number; } interface FormItemProps { formFilterSchema: FormFilterSchema[]; formWrapper?: boolean; formProps?: FormProps; columnSpan?: number; params?: { [key: string]: any; }; } declare const _default: React.ForwardRefExoticComponent>; export default _default;