import { Result } from './result.js';
export declare class Plotter {
    private result;
    constructor(result: Result);
    /**
     * Plots the path three as a DOT for debugging purposes.
     *
     * @returns A string representing the DOT graph of the path tree.
     */
    plotDotGraph(): string;
}
