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