import type { Store } from '../store.js'; import type { GetServerPropsContext, PageRouteDetails } from '../plugins/types.js'; import type { PageProps, PageStaticData } from '../../shared/types'; import type { ExecutionContext } from '../web-server/types.js'; export declare function getServerProps(route: PageRouteDetails, request: Request | null, executionContext: ExecutionContext | null, staticData: PageStaticData, actions: GetServerPropsContext): Promise; export declare function renderPage(route: PageRouteDetails, props: PageProps, executionContext: ExecutionContext | null, store: Store): Promise<{ html: string; props: PageProps; statusCode: 200 | 500; }>; //# sourceMappingURL=index.d.ts.map