import type { Properties, Root } from 'hast';
import type { Plugin } from 'unified';
interface RehypeGraphvizDiagramOption {
    containerTagName?: string;
    containerTagProps?: Properties;
    postProcess?: (svg: string) => string;
}
export declare const rehypeGraphvizDiagram: Plugin<[RehypeGraphvizDiagramOption?], Root>;
export {};
