import React from "react"; import { CSSObject } from "create-emotion"; import { TColor, IComponent } from "../types"; interface AlertProps extends IComponent { children: React.ReactChild; color: TColor; isCloseable: boolean; isGhost: boolean; onClose: () => void; } declare const Alert: React.StatelessComponent export default Alert