import type { Plugin as RollupPlugin } from 'rollup'; import { type SvelteFluentVitePlugin, type PluginOptions as VitePluginOptions } from './vite.js'; import type { HookFunction, Satisfy } from './utils.js'; export type PluginOptions = VitePluginOptions & { ssr?: boolean; }; export type SvelteFluentRollupPlugin = Satisfy>; }>; declare const _default: (options?: Partial) => SvelteFluentRollupPlugin; export default _default;