import { FormInstance } from "../types.js"; //#region src/form/utils/typeUtil.d.ts declare function toArray(value?: T | T[] | null): T[]; declare function isFormInstance(form: T | FormInstance): form is FormInstance; //#endregion export { isFormInstance, toArray };