/// <reference types="react" />
export interface IColorContextValue {
    fieldOptions: Array<{
        text: string;
        value: string;
        disabled: boolean;
    }>;
    stringFields: string[];
    getPopupContainer?: () => HTMLElement;
}
export declare const MetricPanelColorContext: import("react").Context<IColorContextValue>;
export declare const Provider: import("react").Provider<IColorContextValue>, Consumer: import("react").Consumer<IColorContextValue>;
export default MetricPanelColorContext;
