import type { Heading } from '@vcarl/remark-headings'; import type { ReadTimeResults } from 'reading-time'; import type { LegacyFrontMatter } from './frontmatter'; export interface ClientSharedServerContext { frontmatter: LegacyFrontMatter; headings: Array; pathname: string; filename: string; readingTime: ReadTimeResults; }