import { type LexicalNode } from 'lexical'; import { SxProps, Theme } from '@mui/material'; export interface StaticEditorProps { childNodes: LexicalNode[]; sx?: SxProps; } export default function StaticEditor({ childNodes, sx }: StaticEditorProps): import("react/jsx-runtime").JSX.Element;