import React from 'react'; interface IAlertProps { variant?: 'success' | 'info' | 'error' | 'warning'; title?: React.ReactNode; description?: React.ReactNode; extraAction?: React.ReactNode; onClose?: () => void; withAccentBorder?: boolean; classes?: Partial>; icon?: (props: React.SVGProps) => JSX.Element; className?: string; } declare const Alert: React.FC; export default Alert; //# sourceMappingURL=index.d.ts.map