import type { JsonObject } from "../contracts/json-object.js"; /** * Convert any result object with known fields into a plain JsonObject * suitable for ctx.respond(). Strips class identity, prototype chain, * and index signatures — the result is a clean { ...fields } record. * * Skips undefined values to keep the serialized output compact. */ export declare function toJsonObject(result: object): JsonObject; //# sourceMappingURL=result-dto.d.ts.map