import React from 'react'; import type { AppRenderContext } from './app-render'; export declare function createComponentStylesAndScripts({ filePath, getComponent, injectedCSS, injectedJS, ctx, }: { filePath: string; getComponent: () => any; injectedCSS: Set; injectedJS: Set; ctx: AppRenderContext; }): Promise<[React.ComponentType, React.ReactNode, React.ReactNode]>;