import { Photo } from '@airgram-dev/core'; /** Represents a photo */ export declare class InlineQueryResultPhotoBaseModel { _: 'inlineQueryResultPhoto'; /** Unique identifier of the query result */ id: string; /** Photo */ photo: Photo; /** Title of the result, if known */ title: string; /** A short description of the result, if known */ description: string; }