import { Context, type ReactNode } from "react"; import type { ResolvedSegment } from "./types"; export interface OutletContextValue { content: ReactNode; parallel?: ResolvedSegment[]; segment?: ResolvedSegment; loaderData?: Record; parent?: OutletContextValue | null; /** Loading component for Suspense fallback (from segment's loading() definition) */ loading?: ReactNode; } export declare const OutletContext: Context; //# sourceMappingURL=outlet-context.d.ts.map