import { FunctionComponent } from 'react'; import { Co2eUnit } from '../../../../Types'; export declare type ForecastCardProps = { title: string; co2eSavings: number | string; costSavings: string; co2ePercentChange?: number; costPercentChange?: number; co2eUnit?: Co2eUnit; id: string; }; declare const ForecastCard: FunctionComponent; export default ForecastCard;