import { RawHtml } from "ilha";
import { ResolvableHead } from "unhead/types";
//#region src/docs/mdx/types.d.ts
type ContentPageType = "doc" | "custom" | "link";
type ContentMeta = {
title: string;
description?: string;
order?: number;
priority: number;
type: ContentPageType;
link?: string;
external?: boolean;
section?: string;
badge?: string;
draft?: boolean;
hidden?: boolean;
tags: string[];
};
type ContentTreeNode = {
title: string;
path?: string;
type: ContentPageType;
link?: string;
external?: boolean;
priority: number;
order?: number;
description?: string;
badge?: string;
children: ContentTreeNode[];
};
type SearchDocument = {
id: string;
title: string;
path: string;
text: string;
description?: string;
tags: string[];
};
declare const articleClass: string;
//#endregion
export { articleClass as a, SearchDocument as i, ContentPageType as n, ContentTreeNode as r, ContentMeta as t };