import type { InjectionKey, Ref } from 'vue'; export declare const defaultInitialZIndex = 2000; export declare const zIndexContextKey: InjectionKey>; export declare const useZIndex: (zIndexOverrides?: Ref | undefined) => { initialZIndex: import("vue").ComputedRef; currentZIndex: import("vue").ComputedRef; nextZIndex: () => number; }; export declare type UseZIndexReturn = ReturnType;