import type { FormInstance as RcFormInstance } from 'rc-field-form'; import type { NamePath } from '../interface'; export interface FormInstance extends RcFormInstance { getFieldInstance: (name: NamePath) => any; } export default function useForm(form?: FormInstance): [FormInstance];