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