import { Store } from '../types/store'; import { NostrSiteUrlUtils } from './urlutils'; export declare class UrlService { private store; private utils; private origin; private subDir; constructor(store: Store, utils: NostrSiteUrlUtils, origin: string, subDir: string); getUrlByResource(data: any, { absolute, withSubdirectory, }: { absolute?: boolean; withSubdirectory?: boolean; }): string; getUrlByResourceId(id: string, options?: any): string; }