import type { ServerPlugin } from '@modern-js/server-runtime'; import type { LocaleDetectionOptions } from '../shared/type'; export interface I18nPluginOptions { localeDetection: LocaleDetectionOptions; staticRoutePrefixes: string[]; } export declare const i18nServerPlugin: (options: I18nPluginOptions) => ServerPlugin; export default i18nServerPlugin;