export declare const entityTypeArray: readonly ["Device", "Boundary", "User", "UserInvitation", "ClientAlertConfiguration", "LiveLink"]; export type EntityType = (typeof entityTypeArray)[number]; export declare class EntityTag { id: number; tagId: number; clientId: number; entityType: EntityType; entityId: number; metadata: string; createdBy: string; createdAt: Date; modifiedBy: string | null; modifiedAt: Date | null; userId: Buffer | null; imei: string | null; isSecurityGroup: boolean; }