import { type WritableComputedRef } from 'vue'; /** * Returns a reactive model for a specified property in the props object. * @param {Object} props - The props object from which the property is accessed. * @param {string} prop - The name of the property to create a reactive model for. * @returns The computed property representing the reactive model. * * @example * // Usage: * const _model = useProxiedModel(props, 'prop'); * // To update the value: * _model.value = newValueToEmit; */ export declare function useProxiedModel(props: T, prop: keyof T): WritableComputedRef;