import type { BundleRenderer } from 'vue-server-renderer'; import type { hooks as SaberHooks } from '../hooks'; export interface RenderContext { url?: string; markup?: string; } declare const _default: (renderer: BundleRenderer, { url, hooks, isProd }: { url: string; hooks: typeof SaberHooks; isProd: boolean; }) => Promise<{ html: string; context: RenderContext; }>; export default _default;