import HtmlNode from '../../../../Components/Extension/HtmlNode';
import { WaykeStore } from '../../../../Redux/store';
interface IfInsuranceProps {
readonly store: WaykeStore;
readonly lastStage: boolean;
readonly onSkip: () => void;
}
declare class IfInsurance extends HtmlNode {
private readonly props;
private showInsurances;
constructor(element: HTMLElement, props: IfInsuranceProps);
private onChangeDistance;
private onShowInsurances;
private onEdit;
render(): void;
}
export default IfInsurance;