import { Estimation, Options } from "lesetid"; import { Root } from "mdast"; import { Plugin } from "unified"; //#region src/astro.d.ts declare const remarkLesetid: Plugin; declare module "vfile" { interface DataMap { astro: { frontmatter?: { estimation?: Estimation; }; }; } } //#endregion export { type Estimation, type Options, remarkLesetid as default };