import { type DelayService, type LogService } from 'common-services'; import { type WhookCronHandler } from '@whook/whook'; export declare const exampleSchema: { readonly name: "ExampleSchema"; readonly example: { readonly message: "This is message to log"; readonly delay: 1; }; readonly schema: { readonly type: "object"; readonly required: ["message", "delay"]; readonly properties: { readonly message: { readonly type: "string"; }; readonly delay: { readonly type: "number"; }; }; }; }; export declare const definition: { readonly name: "handleMinutes"; readonly schedules: [{ readonly rule: "*/1 * * * *"; readonly body: { readonly message: "A minute starts!"; readonly delay: 10000; }; readonly environments: ["local"]; }]; readonly schema: { readonly $ref: "#/components/schemas/ExampleSchema"; }; readonly config: { readonly environments: "all"; }; }; declare const _default: import("knifecycle").ServiceInitializer<{ delay: DelayService; log: LogService; }, WhookCronHandler<{ message: string; delay: number; }>>; export default _default;