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