import React from 'react'; import type { AxiosInstance } from 'axios'; import type { TCommonState } from '../../app/App'; import type { TConfig, TProgress } from '../../types'; import type { BarProps } from '../BarWithLabels/BarWithLabels'; export declare type SummaryPageProps = { config: TConfig; setProgress: (progress: TProgress) => void; barProps: BarProps | undefined; setBarChartProps: (barProps: BarProps) => void; axios: AxiosInstance; restartQuestionnaire: () => void; barChartModalOpen: boolean; setBarChartModalOpen: React.Dispatch>; } & TCommonState; export declare const SummaryPage: ({ stateParams, setProgress, config, barProps, setBarChartProps, restartQuestionnaire, axios, barChartModalOpen, setBarChartModalOpen, }: SummaryPageProps) => import("@emotion/react/jsx-runtime").JSX.Element;