import { ReactNode } from 'react';
import * as React from 'react';
interface AlertProps {
    message?: string;
    funcss?: string;
    type?: 'success' | 'info' | 'warning' | 'danger';
    outlined?: boolean;
    fixed?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'top-middle' | 'bottom-middle' | 'middle';
    fullWidth?: boolean;
    isLoading?: boolean;
    children?: ReactNode;
    animation?: string;
    duration?: string;
    raised?: boolean;
    card?: boolean;
    variant?: string;
    flat?: boolean;
    standard?: boolean;
    style?: React.CSSProperties;
}
export default function Alert({ message, funcss, type, outlined, fixed, raised, fullWidth, isLoading, children, animation, duration, variant, flat, standard, card, style, ...rest }: AlertProps): any;
export {};
