import { ChartType, ChartDisplayConfig, ColorPalette } from '../../types.js'; interface AnalysisDisplayConfigPanelProps { chartType: ChartType; displayConfig: ChartDisplayConfig; colorPalette?: ColorPalette; onDisplayConfigChange: (config: ChartDisplayConfig) => void; /** Keys to exclude from displayOptionsConfig rendering (e.g., ['content'] when content is managed elsewhere) */ excludeKeys?: string[]; } export default function AnalysisDisplayConfigPanel({ chartType, displayConfig, colorPalette, onDisplayConfigChange, excludeKeys, }: AnalysisDisplayConfigPanelProps): import("react").JSX.Element; export {};