import React, { PropsWithChildren } from 'react'; /** @public */ export type ErrorPanelClassKey = 'text' | 'divider'; /** @public */ export type ErrorPanelProps = { error: Error; defaultExpanded?: boolean; titleFormat?: string; title?: string; }; /** * Renders a warning panel as the effect of an error. * * @public */ export declare function ErrorPanel(props: PropsWithChildren): React.JSX.Element;