///
export declare const variantIcons: {
success: import("react").ComponentClass;
danger: import("react").ComponentClass;
warning: import("react").ComponentClass;
info: import("react").ComponentClass;
custom: import("react").ComponentClass;
};
export interface AlertIconProps extends React.HTMLProps {
/** Additional class names added to the alert icon. */
className?: string;
/** A custom icon. If not set the icon is set according to the variant. */
customIcon?: React.ReactNode;
/** Variant of the alert icon. */
variant: 'success' | 'danger' | 'warning' | 'info' | 'custom';
}
export declare const AlertIcon: ({ variant, customIcon, className, ...props }: AlertIconProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=AlertIcon.d.ts.map