import { InjectionKey } from 'vue'; export default function useSubscribe(key: string | symbol | InjectionKey): { subscribe: (fn: any) => any; unsubscribe: () => any; };