/// <reference types="node" />
import { IncomingMessage, OutgoingMessage } from 'http';
export interface RenderErrorPageComponentsInterface {
    status: string;
    req?: IncomingMessage;
    res?: OutgoingMessage;
    countPrevent?: number;
    importMapper: any;
}
