import type { Config } from '../config/schema.js'; import type { MemoryMaintenanceJob } from './service.js'; export declare const MEMORY_MAINTENANCE_TOKEN = "__xopc_memory_maintenance__"; export interface MemoryMaintenanceSchedule { jobType: Exclude; automationId: string; name: string; cron: string; timezone: string; } export declare function resolveMemoryMaintenanceSchedules(config: Config): MemoryMaintenanceSchedule[]; export declare function maintenanceInstruction(jobType: MemoryMaintenanceSchedule['jobType']): string; export declare function parseMaintenanceInstruction(value: string): MemoryMaintenanceSchedule['jobType'] | undefined;