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