import { IAvailableInsuranceOption } from '@wayke-se/ecom'; import HtmlNode from '../../../../Components/Extension/HtmlNode'; import { WaykeStore } from '../../../../Redux/store'; interface InsuranceListProps { readonly store: WaykeStore; readonly insurances: IAvailableInsuranceOption[]; } declare class InsuranceList extends HtmlNode { private readonly props; constructor(element: HTMLElement | null, props: InsuranceListProps); render(): void; } export default InsuranceList;