interface NamespaceConfig { start: number; } declare const DEFAULT_CONFIG: Record; type ZIndexState = { initial: number; usedZIndex: Set; }; export declare const stateMap: Record; export declare const cleanState: () => void; export declare function useZIndex(namespace?: keyof typeof DEFAULT_CONFIG): readonly [import("vue").Ref, () => number, () => void]; export {};