/// import { Locale } from "../../interfaces/language"; declare const SconeCalculator: (props: SconeCalculatorProps) => JSX.Element; interface SconeCalculatorProps { showSideBar?: boolean; calculatorApiUrl?: string; showSkip?: boolean; offsetRoute?: string; locale?: Locale; onCompletion?: (footPrint: any) => void; onStepChange?: (step: number, footPrint: any) => void; onSkip?: (footPrint: any) => void; } export default SconeCalculator;