import { Plugin, Directive } from 'vue';
declare function withInstall<T>(comp: T, alias?: string, directive?: {
    name: string;
    comp: Directive<T & Plugin>;
}): T & Plugin;
export default withInstall;
