/// export interface Props { type: "info" | "danger" | "success"; text?: string; onClose?: (...args: any[]) => any; aliveFor?: number; className?: string; children?: any; } declare const Alert: ({ type, text, onClose, aliveFor, className, children }: Props) => JSX.Element; export default Alert;