import { type AlertProps } from '@mui/material'; import type { ButtonExProps } from '@xylabs/react-button'; import React from 'react'; import type { ErrorRenderProps } from './Props.ts'; export interface ErrorRenderWithSupportProps extends ErrorRenderProps { /** @deprecated - use slotProps.alert.action */ action?: AlertProps['action']; supportHref?: ButtonExProps['href']; supportIcon?: React.ReactNode; /** @deprecated - use supportLinkTitle instead */ supportLinkText?: string; supportLinkTitle?: string; } export declare const ErrorRenderWithSupport: React.FC; //# sourceMappingURL=ErrorRenderWithSupport.d.ts.map