import React from 'react'; import { AlertProps as AlertPropsPrimitive } from '@modulz/primitives'; export declare type AlertProps = AlertPropsPrimitive & { variant?: 'red' | 'yellow' | 'blue' | 'green'; }; export declare const Alert: React.ForwardRefExoticComponent & React.RefAttributes>;