/// import { Locale } from "../../../interfaces/language"; import "../Calculator.scss"; import "../Step.scss"; declare type HouseholdType = { adults: number; children: number; }; export declare const HouseholdDict: { [key: string]: HouseholdType; }; declare const CalculatorContent: (props: CalculatorContentProps) => JSX.Element; export interface CalculatorContentProps { showSideBar?: boolean; calculatorApiUrl?: string; offsetRoute?: string; showSkip?: boolean; onCompletion?: (footPrint: any) => void; onStepChange?: (step: number, footPrint: any) => void; onSkip?: (footPrint: any) => void; locale?: Locale; } export default CalculatorContent;