import * as React from 'react'; export declare const variantIcons: { success: React.ComponentClass; danger: React.ComponentClass; warning: React.ComponentClass; info: React.ComponentClass; custom: 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) => React.JSX.Element; //# sourceMappingURL=AlertIcon.d.ts.map