import React from 'react'; export declare const HOVER_CARD_WIDTH = 290; export declare const renderHoverCardHeader: (icon: React.ReactNode, name: React.ReactNode, acquiredAt: number | undefined) => JSX.Element; export declare const renderAbilityInfo: (id: number, tag: React.ReactNode | undefined, description: string | undefined) => JSX.Element; export type BuffExistenceProps = { scepter?: boolean; shard?: boolean; }; export type BuffAcquirationProps = { scepterAcquiredAt?: number; shardAcquiredAt?: number; }; export type BuffProps = BuffAcquirationProps | BuffExistenceProps; export declare const isBuffExistenceProps: (props: BuffProps) => props is BuffExistenceProps; export declare const isBuffAcquirationProps: (props: BuffProps) => props is BuffAcquirationProps; export declare const propsToBuffsExistenceProps:
(props: P) => BuffExistenceProps;