import { Video } from '@airgram-dev/core'; /** Represents a video */ export declare class InlineQueryResultVideoBaseModel { _: 'inlineQueryResultVideo'; /** Unique identifier of the query result */ id: string; /** Video */ video: Video; /** Title of the video */ title: string; /** Description of the video */ description: string; }