import { MarketCode } from '../../@types/MarketCode'; import HtmlNode from '../../Components/Extension/HtmlNode'; import { WaykeStore } from '../../Redux/store'; interface SummaryProps { readonly store: WaykeStore; readonly cdnMedia?: string; readonly onClose: () => void; readonly marketCode: MarketCode; } declare class Summary extends HtmlNode { private readonly props; constructor(element: HTMLElement, props: SummaryProps); render(): void; } export default Summary;