import { Entity } from '../../entity'; export declare class ChatEntity extends Entity { createdAt?: Date; updatedAt?: Date; id: string; content: string; mintAddress: string; creatorPK: string; likedBy: string[]; userId: string; }