import { AlertProps as BaseAlertProps } from '@mui/material'; export interface IInlineAlertProps extends BaseAlertProps { className?: string; buttonText?: string; onButtonClick?: () => void; } export declare function InlineAlert({ className, buttonText, onButtonClick, children, ...rest }: IInlineAlertProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=InlineAlert.d.ts.map