import { Animation } from '@airgram-dev/core'; /** Represents an animation file */ export declare class InlineQueryResultAnimationBaseModel { _: 'inlineQueryResultAnimation'; /** Unique identifier of the query result */ id: string; /** Animation file */ animation: Animation; /** Animation title */ title: string; }