import React from 'react';
import type { PlaylistItem } from '../../types/PlaylistTypes';
type Props = {
    title?: string;
    items: PlaylistItem[];
    currentIndex: number;
    loop: boolean;
    shuffle: boolean;
    visible: boolean;
    inline?: boolean;
    position?: 'right' | 'left';
    width?: number;
    isFullscreen?: boolean;
    onClose: () => void;
    onItemClick: (index: number) => void;
    onLoopToggle: () => void;
    onShuffleToggle: () => void;
};
export default function PlaylistPanel({ title, items, currentIndex, loop, shuffle, visible, inline, position, width, isFullscreen, onClose, onItemClick, onLoopToggle, onShuffleToggle, }: Props): React.JSX.Element;
export {};
//# sourceMappingURL=PlaylistPanel.d.ts.map