import { PageBlockCaption, Video } from '@airgram-dev/core'; /** A video */ export declare class PageBlockVideoBaseModel { _: 'pageBlockVideo'; /** Video file; may be null */ video?: Video; /** Video caption */ caption: PageBlockCaption; /** True, if the video should be played automatically */ needAutoplay: boolean; /** True, if the video should be looped */ isLooped: boolean; }