import type { ContentNode } from '../ContentNode.js'; import type { MatchedRouteProps } from './MatchedRoute.js'; import type { GlobalData } from './registerGlobalData.js'; export type RouteContentFunction = (routeData: RouteData, routeParams: RouteParams, props: MatchedRouteProps, globalData: GlobalData, location: string) => ContentNode; export declare function ContentIsRouteContentFunction(content: ContentNode | RouteContentFunction): content is RouteContentFunction; //# sourceMappingURL=RouteContentFunction.d.ts.map