geoiq-frontend-ui-kit
Version:
This project is a UI kit for GeoIQ's frontend. It's built with React, TypeScript, and Vite.
28 lines (27 loc) • 1.22 kB
TypeScript
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