/** * Player Icons * * SVG icons for the video player controls. * All icons are inline SVG strings for zero external dependencies. */ export declare const Icons: { play: string; pause: string; stop: string; volumeHigh: string; volumeLow: string; volumeMute: string; fullscreen: string; fullscreenExit: string; pip: string; pipExit: string; settings: string; subtitles: string; subtitlesOff: string; forward10: string; rewind10: string; forward5: string; rewind5: string; speed: string; quality: string; check: string; chevronRight: string; chevronLeft: string; close: string; error: string; replay: string; chapters: string; next: string; prev: string; }; /** * Create an SVG element from icon string */ export declare function createIcon(iconName: keyof typeof Icons): HTMLElement; export default Icons;