import type { H3Event } from 'h3' export interface VueroSSRContext extends Record { event: H3Event } export interface VueroInitialState extends Record { pinia?: Record } export type VueroServerRender = (ctx: { event: H3Event manifest: Record template: string }) => Promise type PageParam = Record export type StaticParams = Record< string, () => PageParam[] | Promise >