import type { PropsWithChildren } from 'react'; export interface EditorErrorProps extends PropsWithChildren { title: string; } export default function EditorError({ title, children }: EditorErrorProps): import("react/jsx-runtime").JSX.Element;