export interface BarChartProps { data: number[]; width?: number | string; height?: number; color?: string; gap?: number; className?: string; min?: number; max?: number; } export declare const createBarChart: (options: BarChartProps) => { element: SVGSVGElement; update: (newOptions: Partial) => void; destroy: () => void; } | null;