/** 获取当前组件的名字 */ export declare function useComponentName(): string | undefined; /** * 将v-model转换成Ref变量, 并防止递归调用 */ export declare function useLocalModel
(props: P, key: K, emit: (name: Name, ...args: any[]) => void): import("vue").Ref
;