/// <reference types="node" />
import { IncomingMessage, OutgoingMessage } from 'http';
import { Vertical, UserAgentDevicesEnum } from '@bolttech/essentials';
import { Page } from '../types';
export interface RenderComponentsInterface {
    url: string;
    req?: IncomingMessage;
    res?: OutgoingMessage;
    countPrevent?: number;
    preRenderedPage?: Page;
    locale?: string;
    vertical?: Vertical;
    pageDevice?: UserAgentDevicesEnum;
    importMapper: any;
}
