import type { ScheduleEntry } from "../registry.js"; import type { ScheduleBackend } from "./index.js"; export declare function buildIntervals(cron: string): string; export declare class LaunchdBackend implements ScheduleBackend { install(entry: ScheduleEntry): void; uninstall(name: string): void; }