import type { ValuesOf } from '../../Types/ValuesOf'; /** * `VideoLegendPosition` - Defines the position of the legend in a video player. */ export declare const VideoLegendPosition: { /** * `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 VideoLegendPosition = ValuesOf; //# sourceMappingURL=VideoLegendPosition.d.ts.map