import type { Rule, ShowRuleResult } from '../interfaces/ShowHiddenRule'; import type { FormInstance } from 'antd/lib/form'; interface UserShowRuleParams { busiObjectId?: string; } declare const useShowRules: ({ busiObjectId }: UserShowRuleParams) => { showRules: Rule[] | undefined; getShowRule: (form: FormInstance) => ShowRuleResult; }; export default useShowRules;