import { ElementFormatType, LexicalEditor, NodeKey } from 'lexical'; import { AlignmentType, VideoPlatform } from '../types'; type VideoBlockProps = Readonly<{ className: Readonly<{ base: string; focus: string; }>; format: ElementFormatType | null; platform: VideoPlatform; nodeKey: NodeKey; videoID: string; create?: boolean; editor: LexicalEditor; width: 'inherit' | number | string; height: 'inherit' | number | string; alignment: AlignmentType; }>; export declare function VideoBlock({ className, format, platform, videoID, editor, nodeKey, width, height, alignment, }: VideoBlockProps): import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=VideoBlock.d.ts.map