import { type Ref } from 'vue'; import type DFrameContent from '../DFrameContent.js'; import type { Router } from 'vue-router'; export declare const useDFrameParentUrls: (dFrameContent: DFrameContent, router?: Router) => { get: (childHref: string) => Ref; clear: () => void; parentUrls: Record; }; export default useDFrameParentUrls;