import { MarketCode } from '../../../@types/MarketCode'; import HtmlNode from '../../../Components/Extension/HtmlNode'; import { WaykeStore } from '../../../Redux/store'; interface CustomerProps { readonly store: WaykeStore; readonly index: number; readonly lastStage: boolean; readonly marketCode: MarketCode; } declare class Customer extends HtmlNode { private readonly props; constructor(element: HTMLElement, props: CustomerProps); private onChange; render(): void; } export default Customer;