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