import { IPlugin } from '@fishx/types'; export default class LocalePlugin implements IPlugin { private options; constructor(options?: any); localTypes: any; beforeCompile(): void; registerWatcher(): (RegExp[] | (() => void))[]; chainWebpack(config: any): any; addImportCode(): string; ssrEntryImportCode(): string; beforeRenderCode: ({ realPublicPath, devMode, }: { realPublicPath?: string | undefined; devMode?: boolean | undefined; }) => string; ssrBeforeRenderCode(): string; moduleEntryImportCode(): string; exportCode(): string; }