import { AlertProps as BaseAlertProps } from '@mui/material'; import { ReactNode } from 'react'; export interface IAlertProps extends BaseAlertProps { title?: string; className?: string; type?: 'inline' | 'toast'; primaryButtonText?: string; primaryButtonStartIcon?: ReactNode; onPrimaryButtonClick?: () => void; secondaryButtonText?: string; secondaryButtonStartIcon?: ReactNode; onSecondaryButtonClick?: () => void; } export declare const Alert: import('react').ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=Alert.d.ts.map