import { ArrayLikeStackItem } from './ArrayLikeStackItem';
import { StackItemType } from './StackItemType';
export declare class ArrayStackItem extends ArrayLikeStackItem {
    static readonly type = StackItemType.Array;
    private readonly referenceID;
    toStructuralKey(): string;
    equals(other: any): boolean;
}
