/** Contains one row of the game high score table */ export declare class GameHighScoreBaseModel { _: 'gameHighScore'; /** Position in the high score table */ position: number; /** User identifier */ userId: number; /** User score */ score: number; }