import { ReactNode } from 'react'; export type AlertIntent = 'info' | 'warning' | 'error' | 'success' | 'none'; interface Props { intent?: AlertIntent; title: ReactNode; description?: ReactNode; icon?: ReactNode; rightButton?: ReactNode; onClose?: () => void; } export declare const Alert: (props: Props) => import("react/jsx-runtime").JSX.Element; export {};