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