import { ArrayLikeStackItem } from './ArrayLikeStackItem';
import { StackItemType } from './StackItemType';
export declare class StructStackItem extends ArrayLikeStackItem {
    static readonly type = StackItemType.Struct;
    clone(): StructStackItem;
    toStructuralKey(): string;
    equals(other: any): boolean;
}
