import React from 'react'; import { FormFieldsHooks } from '../formUtils/FormFields'; import { RuleInterface } from './useRules'; import { MonitorFn } from '../formUtils/FormContext'; /** * * @param ref ref * @param handle 额外的方法 * @param depends 依赖监听 */ export declare const useCommonImperativeHandle: (ref: any, props: any, handle?: any, tools?: { listenStatus?: MonitorFn; }) => { disabled: boolean; required: boolean; formFieldsRef: React.RefObject; finalRules: import("antd").FormRule[]; setExtendRules: (rules: RuleInterface[], isAppendLastTime: boolean) => void; readOnly: boolean; }; export default useCommonImperativeHandle;