export declare function useMountMonitor(): { isAllMounted: import('vue').ComputedRef; pendingIds: import('vue').Ref; pop: (id: string) => void; push: (id: string) => void; reset: () => void; }; export type MountMonitor = ReturnType;