import * as React from 'react'; import ItemPopupIntl from './ItemPopupIntl'; import { Messages as ApiPopupMessages } from './ApiPopup'; export { Rarity } from './ItemPopupIntl'; export interface Messages extends ApiPopupMessages { 'poe.api.Quality': string; 'poe.api.Armour': string; 'poe.api.Energy Shield': string; 'poe.api.Evasion': string; 'poe.api.Block': string; 'poe.api.Physical Damage': string; 'poe.api.Elemental Damage': string; 'poe.api.Chaos Damage': string; 'poe.api.Weapon Range': string; 'poe.api.Critical Strike Chance': string; 'poe.api.Attacks per Second': string; 'poe.api.Level': string; 'poe.api.Dex': string; 'poe.api.Int': string; 'poe.api.Str': string; } export declare type Props = PropsType; declare const ItemPopup: React.StatelessComponent & { item: import("./ItemPopupIntl/props").Item; } & import("./withIntlProvider").WithMessages>; export default ItemPopup;