import Graph from '../../Graph'; export interface ChaosMode { name: string; shortDescription: string; setupNewGraph?: (graph: Graph) => void; modifyRunCommand?: (command: string) => string; } export declare function activeChaosModes(): any[];