import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ChartLegendPosition` - The `ChartLegendPosition` object is used to describe the different positions of the legend in a chart. * | 'top' * | 'right' * | 'bottom' * | 'left' */ export declare const ChartLegendPosition: { readonly Top: "top"; readonly Right: "right"; readonly Bottom: "bottom"; readonly Left: "left"; }; /** * @public */ export type ChartLegendPosition = ValuesOf; //# sourceMappingURL=ChartLegendPosition.d.ts.map