lexical-remark
Version:
This package contains Markdown helpers and functionality for Lexical using remark-parse.
13 lines (12 loc) • 417 B
TypeScript
import { ElementFormatType, NodeKey } from 'lexical';
type YouTubeComponentProps = Readonly<{
className: Readonly<{
base: string;
focus: string;
}>;
format: ElementFormatType | null;
nodeKey: NodeKey;
videoID: string;
}>;
export declare const YouTubeComponent: ({ className, format, nodeKey, videoID }: YouTubeComponentProps) => import("react/jsx-runtime").JSX.Element;
export {};