import { InjectionKey, ObjectDirective, Ref } from "vue"; //#region ../../packages/hooks/use-forward-ref/index.d.ts type ForwardRefSetter = (el: T) => void; type ForwardRefInjectionContext = { setForwardRef: ForwardRefSetter; }; declare const FORWARD_REF_INJECTION_KEY: InjectionKey; declare const useForwardRef: (forwardRef: Ref) => void; declare const useForwardRefDirective: (setForwardRef: ForwardRefSetter) => ObjectDirective; //#endregion export { FORWARD_REF_INJECTION_KEY, ForwardRefInjectionContext, useForwardRef, useForwardRefDirective };