import { FC } from 'react'; import { IMedia } from '../../../../types'; interface DesktopPlayerProps { post: IMedia; settings: any; totalPosts: number; onClose: () => void; onPostChange: (post: IMedia | null) => void; classPrefix: string; } /** * Desktop "product_list_player" mode. * Shows a stories-format media player on the left and the product list on the * right, both centered over a full-screen overlay. Shares all navigation * logic with MobilePlayer via the usePlayerNavigation hook. */ declare const DesktopPlayer: FC; export default DesktopPlayer;