import * as React from 'react';
export interface ILegendContext {
    SmWidth: number;
    LgWidth: number;
    SmHeight: number;
    LgHeight: number;
    SmallestFontSize: number;
    UseMultiLine: boolean;
    SendMassEnable?: React.MutableRefObject<(id: string) => void>;
}
export interface ILegendRequiredProps {
    enabled: boolean;
    id: string;
}
export declare const LegendContext: React.Context<ILegendContext>;
