export declare const description = "A bar chart with a custom label"; interface ChartBarLabelCustomProps { data: Array<{ month: string; desktop: number; mobile: number; }>; title?: string; description?: string; className?: string; desktopColor?: string; mobileColor?: string; height?: number; } export declare function ChartBarLabelCustom({ data, title, description, className, desktopColor, mobileColor, height }: ChartBarLabelCustomProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=chart-bar-label-custom.d.ts.map