import Album from "../models/Album"; /** * Retrieves album information from the Tidal API based on the provided album ID and country code. * @param {number} albumId - The ID of the album. * @param {string} [countryCode="US"] - The country code to use for retrieving the album information. Defaults to "US". * @returns {Promise} A promise that resolves to an Album object containing the album information. */ export declare function getAlbumInfo(albumId: number, countryCode?: string): Promise; /** * Extracts the album ID from a given URL. * * @param {string} url - The URL from which to extract the album ID. * @return {number} - The extracted album ID, or NaN if the URL does not match the expected format. */ export declare function getAlbumId(url: string): number;