import { type ReactNode } from 'react'; import type { XYChartData } from './../types/xy-chart.js'; /** * Check if there is a Series slot as a children component and if their * data props is empty or not to display Series as a priority against the root * data props * @param children - A children as a ReactElement type * @returns boolean **/ export declare const typesOfCharts: string[]; export declare const isEmptyData: (children: ReactNode | undefined, data: XYChartData[]) => boolean;