import { type WhookRouteTypedHandler } from '@whook/whook'; export declare const diagnosticResponse: { readonly name: "Diagnostic"; readonly response: { readonly description: "Diagnostic"; readonly content: { readonly 'application/json': { readonly schema: { readonly type: "object"; readonly required: ["transactions"]; readonly properties: { readonly transactions: { readonly type: "object"; readonly additionalProperties: true; }; }; }; }; }; }; }; export declare const definition: { readonly path: "/diagnostic"; readonly method: "get"; readonly operation: { readonly operationId: "getDiagnostic"; readonly summary: "Returns current API's transactions."; readonly security: [{ readonly bearerAuth: ["admin"]; }]; readonly tags: ["system"]; readonly parameters: []; readonly responses: { readonly 200: import("ya-open-api-types").OpenAPIReference>; }; }; }; declare const _default: import("knifecycle").ServiceInitializer<{ TRANSACTIONS: components["responses"]["Diagnostic"]["body"]["transactions"]; }, WhookRouteTypedHandler<{ responses: { 200: components["responses"]["Diagnostic"]; }; }, { readonly path: "/diagnostic"; readonly method: "get"; readonly operation: { readonly operationId: "getDiagnostic"; readonly summary: "Returns current API's transactions."; readonly security: [{ readonly bearerAuth: ["admin"]; }]; readonly tags: ["system"]; readonly parameters: []; readonly responses: { readonly 200: import("ya-open-api-types").OpenAPIReference>; }; }; }>>; export default _default;