import type { HooksWithData, HtmlHook, MarkdownHook } from './types.js'; /** * Execute hooks fucntions sequentially, passing the result to each * subsequent hook. */ export declare function reducer(this: HooksWithData, hooks: MarkdownHook[] | HtmlHook[], content: string): string;