import type { ConsoleRpcExtendedCtx, ExtendedRpcResult } from './contracts.js'; export declare function listSchedule(ctx: ConsoleScheduleListCtx): Promise | ExtendedRpcResult; type ConsoleScheduleListCtx = ConsoleRpcExtendedCtx; export declare function addCron(d: Record, ctx: ConsoleRpcExtendedCtx): Promise; export declare function mutateCron(type: 'cron:remove' | 'cron:pause' | 'cron:resume', d: Record, ctx: ConsoleRpcExtendedCtx): Promise; export {};