import CpuInterface from '../CpuInterface'; import StateMachineInterface from './StateMachineInterface'; declare class Compiler { private readonly _state; constructor(_state: CpuInterface.State); compile(op: number): StateMachineInterface | null; private _createAddressing; } export default Compiler;