import React from 'react'; interface AlertBoxProps { content: string; className?: string; hide?: boolean; type: 'info' | 'danger' | 'success' | 'warning'; pxClass?: string; pyClass?: string; useIcon?: boolean; iconSize?: string; closable?: boolean; onClose?: () => void; } declare const AlertBox: React.FC; export default AlertBox;