import {Song} from "@/types/song"; export interface Folder { id: string; name: string; songs: Song[]; expanded: boolean; }