import { Ref } from 'vue-demi'; interface IRecycleTarget { onMount: () => void; onUnmount: () => void; } export declare const useAttach: (target: Ref) => Ref; export {};