import React from "react"; import { IEcomLifecycle, IEcomStore, IEcomContext, IEcomData } from "../types"; export interface IInsuranceInformationDefinitionProps extends IEcomContext, IEcomStore, IEcomLifecycle { } interface IState { expectedDrivingDistanceIndex: number; hasRequestError: boolean; } declare class InsuranceInformationDefinition extends React.Component { constructor(props: IInsuranceInformationDefinitionProps); componentDidMount(): void; handleExpectedDrivingDistanceChange(e: React.ChangeEvent): void; handleWantsToSeeInsuranceOptionsChange(wantsToSeeInsuranceOptions: boolean): void; handleProceedClick(): void; handleProceedAfterUpdate(state: IEcomData): void; handleInputChange(e: React.ChangeEvent): void; handleBlur(e: React.FocusEvent): void; render(): JSX.Element; } export default InsuranceInformationDefinition;