export interface PkgConf { namespace: string; /** * where files write to */ dist: string; /** * plugin dir */ pluginDir: string; /** * plugin prefix */ prefix: string; } export declare const getConf: () => PkgConf;