import type { PlaylistI, SortAlg } from '../types/Playlist.h'; import type { TrackI } from '../types/Track.h'; export declare class Playlist implements PlaylistI { private tracks; createPlaylist(folder: string): TrackI[]; getNext(): TrackI; shuffle(algorithm?: SortAlg): TrackI[]; rearrange(from: number, to: number): TrackI[]; getList(): TrackI[]; }