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