import Playlist from "../models/Playlist"; /** * Retrieves playlist information based on the provided playlist ID and country code. * @param {string} playlistId - The ID of the playlist. * @param {string} [countryCode="US"] - The country code to use for retrieving the playlist information. Defaults to "US". * @returns {Promise} A promise that resolves to a Playlist object containing the playlist information. */ export declare function getPlaylistInfo(playlistId: string, countryCode?: string): Promise; /** * Extracts the playlist ID from a Tidal playlist URL. * * @param {string} url - The URL of the Tidal playlist. * @return {string} The playlist ID, or empty string if the URL does not match the expected format. */ export declare function getPlaylistId(url: string): string;