/// import { Bar } from './Type/Bar'; export { Bar as BarGraph }; export interface GraphProps { data: number[]; height: number; title: string; description?: string; } export declare const Graph: ({height, data, title, description}: GraphProps) => JSX.Element;