import { OpCode } from "./OpCode"; export interface OpCodeAnnotation { /** Number of bytes to read as params. */ operandSize?: number; /** Number of bytes to read to get the number that is the bytes to read as params. */ operandSizePrefix?: number; } /** Annotation details for OpCode. Tracks neo-vm/OpCode.cs */ export declare const OpCodeAnnotations: Record; //# sourceMappingURL=OpCodeAnnotations.d.ts.map