import * as React from 'react'; import type { UiAccessibleConfig } from '../../config'; import type { MdHeading } from '../types/markdown'; export type MarkdownTemplateProps = { pageProps: { frontmatter?: UiAccessibleConfig; headings?: (MdHeading | null)[]; editPage?: { to: string; }; lastModified?: string | null; metadata: { markdoc: { tagList: string[]; [key: string]: unknown; }; [key: string]: unknown; }; }; }; export default function ({ pageProps, children }: React.PropsWithChildren): React.JSX.Element;