export type RawContent = RawContentMarkdown | RawContentMDX | RawContentJSON | RawContentYAML; export interface RawContentMarkdown { readonly kind: 'markdown'; fields: Record; body: string; rawDocumentContent: string; } export interface RawContentMDX { readonly kind: 'mdx'; fields: Record; body: string; rawDocumentContent: string; } export interface RawContentJSON { readonly kind: 'json'; fields: Record; } export interface RawContentYAML { readonly kind: 'yaml'; fields: Record; } //# sourceMappingURL=types.d.ts.map