import type { RouteKey } from '../routing/RouteTypes.js'; import type { ContentNode } from '../ContentNode.js'; export type RouteDefinition = { path: RouteKey; content: ContentNode | string; [key: string]: any; }; //# sourceMappingURL=RouteDefinition.d.ts.map