import { Ref } from '@vue/reactivity';
export declare function getOrCreateNodeRef(nodePath: string): Ref<number>;
export declare function getNodeRef(nodePath: string): Ref<number> | undefined;
export declare function createNodeRef(nodePath: string): Ref<number>;
export declare function touchNodeRef(nodePath: string): void;
