import type { ComponentPropsWithoutRef, ReactNode } from 'react'; type AlertVariant = 'info' | 'success' | 'warning' | 'danger'; type AlertProps = ComponentPropsWithoutRef<'div'> & { icon?: ReactNode; variant?: AlertVariant; }; declare function Alert({ children, className, icon, variant, ...props }: AlertProps): import("react/jsx-runtime").JSX.Element; export type { AlertProps, AlertVariant }; export default Alert;