import type { IncomingMessage } from 'http';
import type { FastifySchema, FastifyRequest, RawServerBase } from '../../../../../../third-party/fastify.js';
export type Request<TBody = void, TQuerystring = void, TParams = void, THeaders = void> = FastifyRequest<{
    Body: TBody;
    Querystring: TQuerystring;
    Params: TParams;
    Headers: THeaders;
}, RawServerBase, IncomingMessage, FastifySchema>;
//# sourceMappingURL=request.d.ts.map