/** * Builds the URL to fetch shared page data for a given identifier. * * @param id - The unique identifier of the shared data resource. * @returns The constructed URL string pointing to the shared data JSON file. * * @example * ```ts * getSharedDataUrl('abc123'); * // "/page-data/shared/abc123.json" * ``` */ export declare function getSharedDataUrl(id: string): string; //# sourceMappingURL=get-shared-data-url.d.ts.map