import type { Song, SongRaw, SongRelationships, SongRelationshipsRaw } from "../types/song"; import type { FetchAPI, MusicKitResultWrapper } from "../index"; export declare class SongsResource { private fetch; constructor(fetch: FetchAPI); get(storefront: string, id: string, raw: true): Promise>; get(storefront: string, id: string, raw?: false): Promise>; getByISRC(storefront: string, isrc: string, raw: true): Promise>; getByISRC(storefront: string, isrc: string, raw?: false): Promise>; } //# sourceMappingURL=songs.d.ts.map