import React from 'react'; import type { TCommonState } from '../../app/App'; import type { TBudget, TBudgets } from '../../types'; import { TProgress } from '../../types'; import type { TBackgroundImages } from '../../types/TBackgroundImages'; export declare type TBudgetBuildingPageProps = { setProgress: (progress: TProgress) => void; currency: string; currentSlide: number; budgets: Array; setBudgets: React.Dispatch>; summaryPageCall: (stateParams: TCommonState) => void; configBackgroundImages?: TBackgroundImages; } & TCommonState; export declare const BudgetBuildingPage: ({ setProgress, stateParams, currentSlide, currency, budgets, setBudgets, summaryPageCall, configBackgroundImages, }: TBudgetBuildingPageProps) => import("@emotion/react/jsx-runtime").JSX.Element;