import type { ApplicationRuntimeConfig } from '@commercetools-frontend/application-config'; import type { THttpSecurityHeaders } from '@commercetools-frontend/constants'; type TReplaceHtmlPlaceholdersOptions = { env: ApplicationRuntimeConfig['env']; headers?: Record; }; declare const replaceHtmlPlaceholders: (indexHtmlContent: string, options: TReplaceHtmlPlaceholdersOptions) => string; export default replaceHtmlPlaceholders;