import { Estimation, Options as Options$1 } from "lesetid"; import { Root } from "mdast"; import { Plugin } from "unified"; //#region src/index.d.ts interface Options extends Options$1 { dataKey?: string; } declare const remarkLesetid: Plugin; declare module "vfile" { interface DataMap { matter?: { [key: string]: unknown; estimation?: Estimation; }; estimation?: Estimation; } } //#endregion export { type Estimation, Options, remarkLesetid as default };