import { BlockBuilderBase } from '../internal/base'; import { AltText, AuthorName, BlockId, Description, End, ProviderIconUrl, ProviderName, ThumbnailUrl, Title, TitleUrl, VideoUrl } from '../internal/methods'; export interface VideoParams { altText?: string; blockId?: string; description?: string; providerIconUrl?: string; providerName?: string; thumbnailUrl?: string; title?: string; titleUrl?: string; videoUrl?: string; } export interface VideoBuilder extends AltText, AuthorName, BlockId, Description, End, ProviderIconUrl, ProviderName, ThumbnailUrl, Title, TitleUrl, VideoUrl { } /** * @@link https://api.slack.com/reference/block-kit/blocks#video * @@displayName Video */ export declare class VideoBuilder extends BlockBuilderBase { }