import { AlertColor } from '@mui/material'; import { RangeSelection } from 'lexical'; import { type JSX } from 'react'; type AlertComponentProps = { text: string; severity: AlertColor; onChange?: (text: string, selection?: RangeSelection) => void; }; export default function AlertComponent({ text, severity, onChange }: AlertComponentProps): JSX.Element; export {};