export declare const WellKnownFields: { readonly route: "route"; readonly method: "method"; readonly controller: "controller"; }; /** * A context object with values that will be passed along to the final emitted query comments. * Can support well-known fields used by existing sqlcommenter-compatible tooling and * arbitrary key-value pairs. */ export type RequestContext = { [WellKnownFields.route]: string; [WellKnownFields.method]?: string; [WellKnownFields.controller]?: string; [key: string]: unknown; }; //# sourceMappingURL=request-context.d.ts.map