import { APIId } from "./id"; export declare type MediaType = "audio" | "video" | "image"; export declare type PlaylistFolderType = "playlist" | "folder"; export declare type APIAudio = { id: APIId; type: MediaType; artist: string; duration: number; }; export declare type APIPlaylist = { id: APIId; items: APIAudio[]; }; export declare type APIPlaylistFolder = { id: APIId; type: PlaylistFolderType; children: APIPlaylistFolder[]; }; //# sourceMappingURL=audio.d.ts.map