import { default as React, FC } from 'react';
import { ReportSnippetViewNS } from './report-snippet-view.types';

declare const ReportSnippetGalleryView: FC<{
    onToggle: () => void;
    isOpen: boolean;
    data?: ReportSnippetViewNS.StreetViewData;
    galleryActiveIndex: number;
    setgalleryActiveIndex: React.Dispatch<React.SetStateAction<number>>;
}>;
interface StoreInsightsSectionProps {
    insights: ReportSnippetViewNS.CatchmentInsights[];
}
declare const StoreInsightsSection: FC<StoreInsightsSectionProps>;
interface StoreOverviewSectionProps {
    highlights: ReportSnippetViewNS.StoreHighlights[];
}
declare const StoreOverviewSection: FC<StoreOverviewSectionProps>;
interface FootfallChartSectionProps {
    data: ReportSnippetViewNS.FootfallChartData[];
}
declare const FootfallChartSection: FC<FootfallChartSectionProps>;
interface CannibalisationChartSectionProps {
    data: ReportSnippetViewNS.CannibalisationChartData[];
}
declare const CannibalisationChartSection: FC<CannibalisationChartSectionProps>;
export { ReportSnippetGalleryView, StoreInsightsSection, StoreOverviewSection, FootfallChartSection, CannibalisationChartSection, };
//# sourceMappingURL=report-snippet-view-components.d.ts.map