export { analyzePage };
import type { PageFile } from '../../../shared/getPageFiles/getPageFileObject.js';
import type { PageConfigRuntime } from '../../../shared/page-configs/PageConfig.js';
import { type AnalysisResult } from '../../../shared/getPageFiles/analyzePageClientSide.js';
import type { GlobalContextServerInternal } from '../globalContext.js';
declare function analyzePage(pageFilesAll: PageFile[], pageConfig: null | PageConfigRuntime, pageId: string, globalContext: GlobalContextServerInternal): Promise<AnalysisResult>;
