import React, { HTMLAttributes, ReactNode } from 'react';
export declare type TAlert = HTMLAttributes & {
children?: ReactNode;
className?: string;
color?: string;
size?: 'sm' | 'md' | 'lg';
shade?: '50' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' | string | number;
custom?: boolean;
onClick?: () => void;
};
export declare const Alert: React.ForwardRefExoticComponent & {
children?: ReactNode;
className?: string | undefined;
color?: string | undefined;
size?: "sm" | "md" | "lg" | undefined;
shade?: string | number | undefined;
custom?: boolean | undefined;
onClick?: (() => void) | undefined;
} & React.RefAttributes>;
export default Alert;