import { Game } from '@airgram-dev/core'; /** Represents information about a game */ export declare class InlineQueryResultGameBaseModel { _: 'inlineQueryResultGame'; /** Unique identifier of the query result */ id: string; /** Game result */ game: Game; }