/**
 * Interface to build URLs based on Downloader desktop URL
 */
export default class WikimediaDesktopURLDirector {
    baseDomain: string;
    constructor(baseDomain: string);
    buildArticleURL(articleId: string): string;
}
