import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ImageLegendPosition` - The `ImageLegendPosition` object is used to describe the different types of image legend positions. * * @public */ export declare const ImageLegendPosition: { /** * `none` - The legend is not displayed. */ readonly None: "none"; /** * `top` - The legend is displayed at the top. */ readonly Top: "top"; /** * `bottom` - The legend is displayed at the bottom. */ readonly Bottom: "bottom"; }; /** * @public */ export type ImageLegendPosition = ValuesOf; //# sourceMappingURL=ImageLegendPosition.d.ts.map