import React from "react"; import { MotionProps } from "framer-motion"; import type { variant, color, icon, open, action, animate, className, children, onClose } from "../../types/components/alert"; export interface AlertProps extends Omit { variant?: variant; color?: color; icon?: icon; open?: open; onClose?: onClose; action?: action; animate?: animate; className?: className; children: children; } export declare const Alert: React.ForwardRefExoticComponent>; export default Alert; //# sourceMappingURL=index.d.ts.map