import { ArcheIconName } from "./icons";
export interface IconMap {
    success: ArcheIconName;
    danger: ArcheIconName;
    error: ArcheIconName;
    warning: ArcheIconName;
    info: ArcheIconName;
}
declare const iconMap: IconMap;
export default iconMap;
