import { MermaidOptions } from '../types/CommandOptions.js';
import { BaseCommand } from './BaseCommand.js';
import { MermaidGenerator } from '../utils/MermaidGenerator.js';
export declare abstract class BaseGraphCommand extends BaseCommand {
    protected mermaidGenerator: MermaidGenerator;
    constructor(options: MermaidOptions);
    protected generateMermaidOutput(result: any, outputPath: string): void;
}
//# sourceMappingURL=BaseGraphCommand.d.ts.map