import React from 'react'; import type { AppRenderContext } from './app-render'; export declare function getLayerAssets({ ctx, layoutOrPagePath, injectedCSS: injectedCSSWithCurrentLayout, injectedJS: injectedJSWithCurrentLayout, injectedFontPreloadTags: injectedFontPreloadTagsWithCurrentLayout, }: { layoutOrPagePath: string | undefined; injectedCSS: Set; injectedJS: Set; injectedFontPreloadTags: Set; ctx: AppRenderContext; }): React.ReactNode;