import { Root } from 'hast'; import type { RenderContext } from '../../types/context.js'; export interface OutlineOptions { enable?: boolean; context?: RenderContext; } export default function rehypeOutline(options?: OutlineOptions): (tree: Root) => void;