type Params = { urlish: string; } & ({ doAssertNoQueryParams: true; doOutputWithTrailingSlash: boolean; } | { doAssertNoQueryParams: false; }); export declare function toFullyQualifiedUrl(params: Params): string; export {};