import type { PropsWithChildren } from 'react';
import { type VariantProps } from 'class-variance-authority';
import type React from 'react';
declare const alertVariants: (props?: ({
    variant?: "warning" | "danger" | "info" | null | undefined;
    size?: "sm" | "md" | "lg" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
type AlertVariantProps = VariantProps<typeof alertVariants>;
type AlertProps = AlertVariantProps & PropsWithChildren<{
    className?: string;
    displayIcon?: boolean;
}>;
export declare const Alert: React.FC<AlertProps>;
export {};
