import type { Album, AlbumRaw, AlbumRelationships, AlbumRelationshipsRaw } from "../types/album"; import type { FetchAPI, MusicKitResultWrapper } from "../index"; export declare class AlbumsResource { private fetch; constructor(fetch: FetchAPI); get(storefront: string, id: string, raw: true): Promise>; get(storefront: string, id: string, raw?: false): Promise>; getByUPC(storefront: string, upc: string, raw: true): Promise>; getByUPC(storefront: string, upc: string, raw?: false): Promise>; } //# sourceMappingURL=albums.d.ts.map