import * as React from 'react';
export interface IPlotGroupContext {
    LegendWidth: number;
    RegisterLegendWidth: (requesterID: string, width: number) => void;
    UnRegisterLegendWidth: (requesterID: string) => void;
    HasConsumer: boolean;
}
declare const PlotGroupContext: React.Context<IPlotGroupContext>;
export default PlotGroupContext;
