import type { FormInstance } from 'antd/lib/form'; import type { ComponentInstance } from '../../interfaces/ComponentInstance'; interface UseOtherFieldProps { form: FormInstance; pageData: ComponentInstance[]; } declare const useOtherField: ({ form, pageData }: UseOtherFieldProps) => { otherFieldCalWithValuesChange: (changedFieldsValues: Record, _: Record) => void; }; export default useOtherField;