import type { BackendPluginService, JtSitePackConf } from "@paroicms/public-server-lib"; export interface MakeUrlOptions { protocol: "http" | "https"; fqdn: string; port?: number; path?: string; } export declare function makeUrl({ path, fqdn, protocol, port }: MakeUrlOptions): string; export interface MakeSitePackHostnameOptions { domain: string; pack: JtSitePackConf; port?: number; portTemplate?: string; } export declare function makeSitePackHostname({ domain, pack, port, portTemplate, }: MakeSitePackHostnameOptions): string; export declare function toAbsoluteUrl(service: Pick, url: string): string; //# sourceMappingURL=url.helpers.d.ts.map