import type { MdPageStaticData } from './types'; import type { GetStaticDataContext } from '../types'; import type { ContentProvider, ParsedContentRecord } from '../../content/content-provider.js'; export interface ContentData { contentRecord: ParsedContentRecord; relativePath: string; slug: string; frontmatter: Record; } export declare function markdownStaticDataLoader(contentProvider: ContentProvider, { contentRecord, relativePath, slug, frontmatter }: ContentData, actions: GetStaticDataContext): Promise; //# sourceMappingURL=markdown-static-data-loader.d.ts.map