/** * Extracts the type of URL from a Tidal URL. * * @param {string} url - The Tidal URL to extract the type from. * @return {string | null} - The type of URL extracted from the input URL, or null if the URL does not match the expected format. */ export declare function getURLType(url: string): string | null;