/** A new high score was achieved in a game */ export declare class MessageGameScoreBaseModel { _: 'messageGameScore'; /** Identifier of the message with the game, can be an identifier of a deleted message */ gameMessageId: number; /** * Identifier of the game; may be different from the games presented in the message * with the game */ gameId: string; /** New score */ score: number; }