import { default as React } from 'react'; interface ReportChartLoaderProps { backgroundColor?: string; barCount?: number; barHeights?: number[]; chartDefaultHeight?: number; chartDefaultWidth?: number | string; customStyle?: React.CSSProperties; } declare const ReportChartLoader: ({ customStyle, chartDefaultHeight, chartDefaultWidth, barCount, barHeights, backgroundColor, }: ReportChartLoaderProps) => import("react/jsx-runtime").JSX.Element; export default ReportChartLoader;