import type { TrackList } from '../../types/Playlist.h'; export declare const createPlaylist: (folder: string) => TrackList; declare type RearrangeOpts = { to: number; from: number; }; export declare const rearrangePlaylist: (arr: TrackList, { to, from }: RearrangeOpts) => TrackList; export {};