import { AttackPathNodeType } from '../../tokens/attackPath'; /** * AttackPathLegend * Classification: custom * * Domain-specific legend that documents the attack-path node color system * (stroke + fill per node type) directly from design tokens. Used alongside * attack-path graphs and investigation views. */ export interface AttackPathLegendProps { /** Restrict to a subset of node types (defaults to all, in canonical order). */ types?: AttackPathNodeType[]; orientation?: 'horizontal' | 'vertical'; } export declare function AttackPathLegend({ types, orientation, }: AttackPathLegendProps): import("react").JSX.Element;