import type { BunextPageModuleServerReturn, BunextPageServerFn, BunxRouteParams } from "../../../types"; type Params = { url?: URL; server_function?: BunextPageServerFn; query?: Record; routeParams?: BunxRouteParams; props?: Record | null; }; export default function grabPageServerRes({ url, query, routeParams, server_function, props, }: Params): Promise; export {};