import { LegendLabels } from './labels'; /** Per-panel configuration delivered by `Legend.Provider` to all containers. */ export interface LegendConfig { labels: LegendLabels; } export declare const LegendConfigContext: import('react').Context; export declare function useLegendConfig(): LegendConfig;