/// <reference types="node" />
import { ServerResponse } from "http";
export declare class Request {
    params: {
        [key: string]: any;
    };
    headers: {
        [key: string]: any;
    };
    body: string | object;
    constructor();
}
export declare class Response {
    headers: {
        [key: string]: any;
    };
    statusCode: number;
    body: string | object;
    constructor();
    writeResponse(res: ServerResponse): void;
}
//# sourceMappingURL=model.d.ts.map