/** * PlaylistManager Component * * Entertainment component with full dark mode support. * * @component * @example * ```tsx * * ``` */ export interface PlaylistManagerProps { className?: string; children?: React.ReactNode; disabled?: boolean; } export declare const PlaylistManager: ({ className, children, disabled, }: PlaylistManagerProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=playlist-manager.d.ts.map