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