import type { AppContext, Plugin, Ref } from 'vue' export type SFCWithInstall = T & Plugin export type SFCInstallWithContext = SFCWithInstall & { _content: AppContext | null } export type MaybeRef = T | Ref