import React from "react"; export interface GraphContainerProps { dataKey: string; label?: string; total?: string; onRemove: () => void; } export declare const GraphContainer: React.FC;