import type { Nullish } from 'parsnip-kit'; import { type Ref } from 'vue'; export declare const useControlledMode: (field: K, props: P, emits: Function, options?: { transform?: (nextValue: T | Nullish) => T | Nullish; initial?: (nextValue: T | Nullish) => T | Nullish; defaultField?: D; }) => readonly [Ref, (nextValue: V) => Promise, import("vue").ComputedRef];