type UrlMap = {
    [countryCode: string]: {
        [language: string]: string;
    };
};
declare function getConsentUrl(countryCode: string, locale: string, urlMap: UrlMap): string;
export { getConsentUrl };
