/** * Abstract Entity base class with the * gid and id properties declared. */ export declare abstract class Entity { gid?: string; id?: string; }