/// export declare const HERO_FRAGMENT = "\n fragment AghanimShardHoverCardHero on HeroType {\n id\n abilities {\n ability {\n id\n language {\n shardDescription\n }\n stat {\n isGrantedByShard\n }\n }\n }\n }\n"; type AbilityType = { id: number; language?: { shardDescription?: string; }; stat?: { isGrantedByShard?: boolean; }; }; export type HeroType = { id: number; abilities: Array<{ id: number; ability: AbilityType; }>; }; type AghanimShardHoverCardProps = { hero: HeroType; acquiredAt?: number; }; export declare function AghanimShardHoverCard(props: AghanimShardHoverCardProps): JSX.Element | null; export {};