import React from "react"; import { SliderTypeMap } from "@material-ui/core"; import { CalculatorStepEnum } from "../../../../enums/Calculator"; import "./House-facilities-step.scss"; interface HouseFacilitiesStepProps { selectedHeatSource: string; selectedWaterSource: string; selectedSolarPanelCapacity: number; numberOfSolarPanels: string; peakOutput: string; annualOutput: string; step: CalculatorStepEnum; handleHeatSourceChange: (event: React.ChangeEvent) => void; handleNextStep: () => void; handlePreviousStep: () => void; handleSolarPowerChange: SliderTypeMap["props"]["onChangeCommitted"]; handleSolarPeakOutputChange: (value: number) => void; handleNumberOfSolarPanelChange: (value: number) => void; handleSolarAnnualOutput: (value: number) => void; } declare const HouseFacilitiesStep: (props: HouseFacilitiesStepProps) => JSX.Element; export default HouseFacilitiesStep;