import * as React from 'react'; import { GraphData, ResponseError } from './types'; import './ContentInsightsSummary.scss'; interface Props { error?: ResponseError; graphData: GraphData; isLoading: boolean; isRedesignEnabled?: boolean; onClick: () => void; previousPeriodCount: number; totalCount: number; } declare const ContentInsightsSummary: ({ error, graphData, isLoading, isRedesignEnabled, onClick, previousPeriodCount, totalCount, }: Props) => React.JSX.Element; export default ContentInsightsSummary;