import React from 'react'; import { FloatingBarChartProps, ThemeConfig, PresetTheme } from '../types'; export interface FloatingBarChartComponentProps extends FloatingBarChartProps { /** Preset theme name */ theme?: PresetTheme; /** Custom theme configuration */ themeConfig?: ThemeConfig; } /** * FloatingBarChart Component * * A bar chart where bars can "float" - they don't have to start from zero. * Each data point is specified as [start, end] to define the bar's range. * Fully responsive with mobile-optimized rendering. * * Perfect for: * - Gantt-style charts * - Range visualization * - Showing intervals or periods * - Temperature ranges (min/max) * * @example * ```tsx * * ``` */ export declare const FloatingBarChart: React.FC; export default FloatingBarChart;