import { StaticAssetHandler } from '@solid/community-server'; import type { HttpHandlerInput } from '@solid/community-server'; /** * A specialized StaticAssetHandler that serves the React UI assets * from the 'static/app' directory under the '/app/' URL path. */ export declare class AppStaticAssetHandler extends StaticAssetHandler { private readonly assetsPath; constructor(); handle(input: HttpHandlerInput): Promise; }