import type * as http from 'node:http'; import type { JwsVerifier } from './server.classes.jws.verifier.js'; import type { IServerOrderStore } from './server.interfaces.js'; /** * POST /authz/:id — Return authorization with embedded challenges (POST-as-GET). */ export declare function createAuthzHandler(baseUrl: string, jwsVerifier: JwsVerifier, orderStore: IServerOrderStore): (req: http.IncomingMessage, res: http.ServerResponse, params: Record, body: any) => Promise;