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