import React from 'react';
import { StackedBarChartProps, ThemeConfig, PresetTheme } from '../types';
export interface StackedBarChartComponentProps extends StackedBarChartProps {
/** Preset theme name */
theme?: PresetTheme;
/** Custom theme configuration */
themeConfig?: ThemeConfig;
}
/**
* StackedBarChart Component
*
* A stacked bar chart that shows the composition of data across categories.
* All datasets are stacked on top of each other.
* Fully responsive with mobile-optimized rendering.
*
* @example
* ```tsx
*
* ```
*/
export declare const StackedBarChart: React.FC;
export default StackedBarChart;