import { type InteractiveElementInstance } from '@myparcel/vue-form-builder'; import { type AnyVal } from '../types'; export type FormValueSetter = (value: AnyVal, target?: string) => void; export declare const createValueSetter: (instance: InteractiveElementInstance, prefix: string) => FormValueSetter;