/**
* File Name: Alert
*/
/** @jsx jsx */
import React from 'react';
import { ICoreBase } from '../../core';
export interface Ialert extends ICoreBase {
    text?: string;
    color?: string;
}
export declare const Alert: React.ForwardRefExoticComponent<Ialert & React.RefAttributes<HTMLDivElement>>;
