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?: any) => { initialZIndex: any; currentZIndex: any; nextZIndex: () => any; }; export type UseZIndexReturn = ReturnType;