import { Id, Json, JsonValue, Text } from './Types';
export declare class Req {
    readonly state: any;
    constructor(state?: any);
    get id(): Id;
    get q(): JsonValue;
    get path(): Json;
    get query(): Json;
    get body(): unknown;
    get: (key: Text) => any;
}
