export { resolveRouteFunction }; export { assertRouteParams }; export { assertSyncRouting }; export { warnDeprecatedAllowKey }; import type { PageContextUrlInternal } from '../getPageContextUrlComputed.js'; declare function resolveRouteFunction(routeFunction: (arg: unknown) => unknown, pageContext: PageContextUrlInternal, routeFunctionFilePath: string): Promise; }>; declare function assertSyncRouting(res: unknown, errPrefix: string): void; declare function warnDeprecatedAllowKey(): void; declare function assertRouteParams(result: T, errPrefix: `${string} should`): asserts result is T & { routeParams?: Record; };