/** * Opcode classification helpers — pure functions, easy to unit-test and * reuse across multiple components (OpcodeViewer, StepDebugger, GasProfiler). */ export type OpcodeCategory = "storage" | "memory" | "call" | "stack" | "logging" | "hash" | "control" | "other"; export declare const OPCODE_CATEGORY_COLORS: Record; export declare function classifyOpcode(op: string): OpcodeCategory; export declare function getOpcodeColor(op: string): string; export declare function isExpensiveOp(op: string): boolean; //# sourceMappingURL=opcodeClassify.d.ts.map