import * as React from 'react'; import type { PageProps } from '../../../shared/types'; import type { MdHeading } from '../../app/types'; export default function MarkdownTemplate({ pageProps, children, }: React.PropsWithChildren<{ pageProps: PageProps & { headings?: (MdHeading | null)[]; editPage?: { to: string; }; lastModified?: string | null; }; }>): React.JSX.Element; //# sourceMappingURL=MarkdownTemplate.d.ts.map