import { ServerWrapper } from './serverWrapper'; import type { CompilerServerOptions } from './createCompile'; import type { PluginOption } from 'oc-vite'; interface ViteServerOptions { publishFileName?: string; serverWrapper?: ServerWrapper; plugins?: PluginOption[]; imports?: Record; } declare const _default: (arg1: ViteServerOptions & CompilerServerOptions, callback: (err: NodeJS.ErrnoException, result: { type: string; hashKey: string; src: string; parameters: Record | undefined; }) => void) => void; export default _default;