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 {};
