import type MarkdownIt from "markdown-it";
import { PikchrResultType } from "pikchr";
interface PikchrPluginOptions {
    render_f: (result: PikchrResultType) => string;
}
declare const PikchrPlugin: (md: MarkdownIt, opts?: PikchrPluginOptions | undefined) => void;
export default PikchrPlugin;
