/// <reference types="react" />
import { TColor } from "../utils/color";
interface AlertProps {
    children: React.ReactNode;
    color: TColor;
}
export declare const Alert: ({ children, color }: AlertProps) => JSX.Element;
export {};
