import type { Plugin } from 'vue'; export type SFCWithInstall = T & Plugin; export declare const withInstall: >(main: T, extra?: E | undefined) => SFCWithInstall & E; export declare const withNoopInstall: (component: T) => SFCWithInstall;