import CpuInterface from '../../CpuInterface'; import StateMachineInterface from '../StateMachineInterface'; import NextStep from './NextStep'; declare class Immediate implements StateMachineInterface { constructor(state: CpuInterface.State, next?: NextStep); reset: () => StateMachineInterface.Result; private _fetchOperand; private _operand; private readonly _result; private readonly _state; private readonly _next; } export declare const immediate: (state: CpuInterface.State, next: NextStep) => Immediate; export {};