import { FunctionComponent } from "react";
import { AppConfig } from "../../core/config/type.js";
import { TemplateProps } from "../../routing/types.js";
export declare const renderIndexHTML: (template: FunctionComponent<TemplateProps>, options: {
    rootPath: string;
    config: AppConfig;
    enableIndexFallback: boolean;
}) => Promise<void>;
