import { Rarity, NotificationType } from '@dcl/schemas'; import { CommonNotificationProps, DCLNotification } from './types'; import { FunctionComponent } from 'react'; export declare const MAXIMUM_FRACTION_DIGITS = 2; export declare function formatMana(mana: string, maximumFractionDigits?: number): string; export declare function getBGColorByRarity(rarity: Rarity): string; export declare type DecentralandNotificationComponentByType = Partial<{ [k in NotificationType]: T extends DCLNotification ? FunctionComponent> : never; }>; export declare const NotificationComponentByType: DecentralandNotificationComponentByType; export declare const CURRENT_AVAILABLE_NOTIFICATIONS: string[]; export declare const replaceWithValues: (str: string, values: Record) => JSX.Element | string;