import { DatabaseContext } from '@contember/engine-system-api'; import { Timer } from '../application'; import { IncomingMessage, ServerResponse } from 'node:http'; export interface NotModifiedCheckResult { isModified: boolean; setResponseHeader: (response: ServerResponse) => void; } export declare class NotModifiedChecker { checkNotModified({ request, body, timer, systemDatabase, stageId }: { body: any; request: IncomingMessage; timer: Timer; systemDatabase: DatabaseContext; stageId: string; }): Promise; } //# sourceMappingURL=NotModifiedChecker.d.ts.map