import { Animation, PageBlockCaption } from '@airgram-dev/core'; /** An animation */ export declare class PageBlockAnimationBaseModel { _: 'pageBlockAnimation'; /** Animation file; may be null */ animation?: Animation; /** Animation caption */ caption: PageBlockCaption; /** True, if the animation should be played automatically */ needAutoplay: boolean; }