import { Animation } from '@airgram-dev/core'; /** An animation message (GIF-style). */ export declare class PushMessageContentAnimationBaseModel { _: 'pushMessageContentAnimation'; /** Message content; may be null */ animation?: Animation; /** Animation caption */ caption: string; /** True, if the message is a pinned message with the specified content */ isPinned: boolean; }