import { ComponentPublicInstance, Ref, ComputedRef } from 'vue';
export declare function useForwardExpose(): {
    forwardRef: (ref: Element | ComponentPublicInstance | null) => void;
    currentRef: Ref<Element | ComponentPublicInstance | null | undefined, Element | ComponentPublicInstance | null | undefined>;
    currentElement: ComputedRef<HTMLElement>;
};
