import React from 'react'; import { StackedBarChartWithGroupsProps, ThemeConfig, PresetTheme } from '../types'; export interface StackedBarChartWithGroupsComponentProps extends StackedBarChartWithGroupsProps { /** Preset theme name */ theme?: PresetTheme; /** Custom theme configuration */ themeConfig?: ThemeConfig; } /** * StackedBarChartWithGroups Component * * A stacked bar chart that supports multiple stack groups side by side. * Use the `stack` property on each dataset to assign them to different groups. * Fully responsive with mobile-optimized rendering. * * @example * ```tsx * * ``` */ export declare const StackedBarChartWithGroups: React.FC; export default StackedBarChartWithGroups;