import { InjectionKey, Ref } from "vue"; import { MaybeRef } from "@vueuse/core"; //#region ../../packages/hooks/use-id/index.d.ts type ElIdInjectionContext = { prefix: number; current: number; }; declare const ID_INJECTION_KEY: InjectionKey; declare const useIdInjection: () => ElIdInjectionContext; declare const useId: (deterministicId?: MaybeRef) => Ref; //#endregion export { ElIdInjectionContext, ID_INJECTION_KEY, useId, useIdInjection };