import { ReactElement } from 'react'; export interface AlertSuccessType { size?: number; color?: string; fillColor?: string; accessibleTitle?: string; } /** * @deprecated Use instead */ declare const AlertSuccess: ({ size, color, fillColor, accessibleTitle, ...otherProps }: AlertSuccessType) => ReactElement; export default AlertSuccess;