import { PredictionContext } from "./PredictionContext.js"; export declare class ArrayPredictionContext extends PredictionContext { readonly parents: Array; readonly returnStates: number[]; constructor(parents: Array, returnStates: number[]); isEmpty(): boolean; get length(): number; getParent(index: number): PredictionContext | null; getReturnState(index: number): number; equals(other: unknown): boolean; toString(): string; }