import { DbClientContract } from '@zenstackhq/runtime'; import { HttpAdapterHost } from "@nestjs/core"; import { ApiHandlerOptions } from './interfaces'; /** * The ZenStack API handler service for NestJS. The service is used to handle API requests * and forward them to the ZenStack API handler. It is platform agnostic and can be used * with any HTTP adapter. */ export declare class ApiHandlerService { private readonly httpAdapterHost; private readonly prisma; private readonly request; constructor(httpAdapterHost: HttpAdapterHost, prisma: DbClientContract, request: unknown); handleRequest(options?: ApiHandlerOptions): Promise; }