/** * The absolute, world-readable URL of a credential's shared copy: * `{serverUrl}/space/{spaceId}/public-credentials/{cid}`. Takes the server URL, * Space id, and credential cid as arguments, with no dependency on app config. * The path is joined onto the server URL's base path (a sub-path deployment * keeps its prefix), and each segment is percent-encoded by the builder. * * @param options {object} * @param options.serverUrl {string} the WAS storage server base URL * @param options.spaceId {string} the profile's WAS Space id * @param options.cid {string} the credential's content cid * @returns {string} */ export declare function publicCredentialUrl({ serverUrl, spaceId, cid }: { serverUrl: string; spaceId: string; cid: string; }): string; //# sourceMappingURL=publicLink.d.ts.map