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