/** * Builds the exact URL used to fetch shared page data over HTTP. The client * loader and the server-side `` generation must both use * this function so the preloaded URL matches the fetched URL byte for byte. * * @param id - The unique identifier of the shared data resource. * @param isDevelopMode - Whether the portal runs in develop mode, where the URL is kept raw instead of URI-encoded. * @returns The path-prefixed (and, outside develop mode, URI-encoded) shared data URL. * * @example * ```ts * getSharedDataFetchUrl('with space', false); * // "/page-data/shared/with%20space.json" * ``` */ export declare function getSharedDataFetchUrl(id: string, isDevelopMode: boolean): string; //# sourceMappingURL=get-shared-data-fetch-url.d.ts.map