import { VariantProps } from 'class-variance-authority'; import * as React from 'react'; declare const alertVariants: (props?: ({ variant?: "default" | "error" | "success" | "warning" | "info" | null | undefined; } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string; export interface AlertProps extends React.HTMLAttributes, VariantProps { /** Show close button */ closable?: boolean; /** Callback when close button is clicked */ onClose?: () => void; /** Custom icon to override default */ icon?: React.ReactNode; /** Hide the default icon */ hideIcon?: boolean; } export declare const Alert: React.ForwardRefExoticComponent>; export interface AlertTitleProps extends React.HTMLAttributes { } export declare const AlertTitle: React.ForwardRefExoticComponent>; export interface AlertDescriptionProps extends React.HTMLAttributes { } export declare const AlertDescription: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Alert.d.ts.map