import SwitchInterface from '../../io/SwitchInterface'; export default class LatchedInput { private _switch; constructor(_switch: SwitchInterface); reset(): void; vblank(value: number): void; inpt(): number; private _modeLatched; private _latchedValue; }