import type { CacheOptions } from '@rspack/core'; import type { GlobalStore } from '..'; declare class RspackCommon { store: GlobalStore; setup(store: GlobalStore): Promise; /** * 适配缓存多样性设置 */ get cache(): CacheOptions; /** * 解决单项目多开的缓存问题 */ get name(): string; common(): Promise; checkTsconfig(): Promise; stats(): Promise; devServer(): Promise; optimization(): Promise; } declare const _default: RspackCommon; export default _default;