export { getCacheControl };
import type { PageConfigRuntime } from '../../../../shared/page-configs/PageConfig.js';
import type { HttpResponse } from '../createHttpResponse.js';
type StatusCode = HttpResponse['statusCode'];
declare function getCacheControl(pageId: string, pageConfigs: PageConfigRuntime[], statusCode: StatusCode): string;
