export declare abstract class ProgramCounter {
    abstract plus(value: number): ProgramCounter;
    abstract equals(other: ProgramCounter): boolean;
    abstract getPC(): number;
}
