import { type WhookRouteTypedHandler } from '@whook/whook'; import { type TimeService } from 'common-services'; export declare const timeSchema: { readonly name: "TimeSchema"; readonly schema: { readonly type: "object"; readonly additionalProperties: false; readonly properties: { readonly currentDate: { readonly type: "string"; readonly format: "date-time"; }; }; }; }; export declare const definition: { readonly path: "/time"; readonly method: "get"; readonly operation: { readonly operationId: "getTime"; readonly summary: "Get API internal clock date."; readonly tags: ["system"]; readonly responses: { readonly 200: { readonly description: "Server current date"; readonly content: { readonly 'application/json': { readonly schema: import("ya-json-schema-types").ExpressiveJSONSchema; }; }; }; }; }; }; declare const _default: import("knifecycle").ServiceInitializer<{ time: TimeService; }, WhookRouteTypedHandler<{ responses: { 200: { body: components["schemas"]["TimeSchema"]; }; }; }, { readonly path: "/time"; readonly method: "get"; readonly operation: { readonly operationId: "getTime"; readonly summary: "Get API internal clock date."; readonly tags: ["system"]; readonly responses: { readonly 200: { readonly description: "Server current date"; readonly content: { readonly 'application/json': { readonly schema: import("ya-json-schema-types").ExpressiveJSONSchema; }; }; }; }; }; }>>; export default _default;