import { n as IMdxNodeData, t as IMdxCodeNodeProperties } from "./mdx-runtime-CwEw2jem.js"; import { Node } from "unist"; //#region src/types/unist.d.ts declare module 'unist' { interface Data extends IMdxNodeData {} } interface IUnistNode extends Node { type: string; name?: string; tagName?: string; value?: string; properties?: { className?: string[]; [key: string]: unknown; } & IMdxCodeNodeProperties; attributes?: { name: string; value: unknown; type?: string; }[]; children?: IUnistNode[]; } interface IUnistTree extends Node { children: IUnistNode[]; } //#endregion export { IUnistTree as n, IUnistNode as t };