/** * Returns the client-side URL for fetching page data JSON, taking into account * an optional path prefix. * * - If a `pathPrefix` exists (e.g., for client routing), it is prepended to the URL * and removed from the normalized route to avoid duplication. * - If no `pathPrefix` exists, the function falls back to the standard `getPageDataUrl`. * - For the root route (`'/'`), the URL points to `/index/data.json`. * * @param normalizedRoute - The normalized route path (e.g., "/", "/about", "/docs/intro"). * @returns The constructed client-side page data URL string. * * @example * ```ts * getClientPageDataUrl('/'); * // '/page-data/index/data.json' (or with prefix if configured) * ``` */ export declare function getClientPageDataUrl(normalizedRoute: string): string; //# sourceMappingURL=get-client-page-data-url.d.ts.map