import { type ReactNode } from 'react'; import { ChartLayoutDimensions, ChartLayoutSettings } from '../types/chart-layout.js'; /** * Function responsible to calculate the setup params for the chart layout ( * e.g. orientation, resizable state, ratio etc.) * @param containerSizes - * @param children - * @param isEmpty - */ export declare const getChartLayoutSettings: (containerSizes: ChartLayoutDimensions, children: ReactNode, isEmpty: boolean) => ChartLayoutSettings;