import React from 'react'; interface AlertProps { title: string; children?: React.ReactNode; variant?: 'info' | 'warning' | 'error' | 'success'; className?: string; } export declare const Alert: React.FC; export {};