import React, { ReactElement } from 'react'; import type { DrawerProps } from 'tntd/lib/drawer'; import type { WrappedFormUtils } from 'antd/lib/form/Form'; import { WrappedFormProps as FormProps } from '../form'; export interface QueryFormProps { className?: string; language?: string; initialValues?: Record; showExpand?: boolean; defaultExpanded?: boolean; showSearch?: boolean; showReset?: boolean; showFieldCount?: number; changeTriggerSearch?: boolean; size?: string; drawerProps?: DrawerProps; children?: React.ReactElement[]; renderActions?: () => React.ReactElement | null; customFormActions?: ReactElement[] | ReactElement; extraActions?: ReactElement[]; onChange?: FormProps['onChange']; onToggleExpand?: (expanded: boolean) => void; onSearch?: (values: unknown) => void; onReset?: (values: unknown) => void; } export declare const QueryForm: React.ForwardRefExoticComponent>>; export default QueryForm;