import { ComputedRef } from 'vue'; import type { Ref } from 'vue'; export declare class ZIndex { initialZIndex: Ref; currentZIndex: ComputedRef; nextZIndex(): Ref; } export declare const useZIndex: () => { initialZIndex: any; currentZIndex: ComputedRef; nextZIndex: () => any; };