/** * `photon ps` — list and control everything the daemon is running. * * The observability surface for the two-step scheduling model: * - ACTIVE: cron timers currently registered * - DECLARED: @scheduled tags discovered in registered bases but not * enrolled in their base's active-schedules file * - WEBHOOKS: HTTP routes the daemon is serving (auto-registered from * @webhook tags) * - SESSIONS: photons currently loaded in memory * * Subcommands: enable / disable / pause / resume take `:`. */ import type { Command } from 'commander'; import { parsePsTarget as parseTarget } from '../../shared/identity.js'; export { parseTarget }; export declare function registerPsCommands(program: Command): void; //# sourceMappingURL=ps.d.ts.map