import type { FileRouter } from '#lib/file-router/index'; import type { Metadata } from './metadata.js'; export type { Metadata }; /** * A route with its associated metadata */ export interface Page { route: FileRouter.Route; metadata: Metadata; } //# sourceMappingURL=page.d.ts.map