import type { AlertProps, CardProps } from '@mui/material'; import type { PropsWithChildren } from 'react'; import React from 'react'; interface EmbedErrorCardBaseProps { alertProps?: AlertProps; error?: Error; hideErrorDetails?: boolean; scope?: string; } interface EmbedErrorCardProps extends EmbedErrorCardBaseProps, CardProps { } /** Card that displays embed plugin load errors with optional detail visibility. */ export declare const EmbedErrorCard: React.FC>; export {}; //# sourceMappingURL=EmbedErrorCard.d.ts.map