import { PluginTypes } from "../core/plugInContainer"; import { PluginOption } from 'vite'; export type AliasOpt = { [key: string]: string; }; export declare class Alias implements PluginTypes { config: AliasOpt; private pwd; readConfiguration(obj?: { [key: string]: string; }): this; getPlugin(): PluginOption; }