import { type ApplicationRuntimeConfig } from '@commercetools-frontend/application-config'; type TCompileHtmlResult = { env: ApplicationRuntimeConfig['env']; headers: Record; indexHtmlContent: string; }; declare function compileHtml(indexHtmlTemplatePath: string): Promise; export default compileHtml;