import type { AgentsSession } from "../session/types.js"; import type { ScheduledRun } from "./schema.js"; /** Scheduled runs. Accepts a bare array or a `{ schedules }` envelope. */ export declare const listScheduledRuns: (session: AgentsSession) => Promise; /** Jobs. Accepts a bare array or a `{ jobs }` envelope. Shape untyped. */ export declare const listJobs: (session: AgentsSession) => Promise; /** Brand kits visible to the session. Shape unconfirmed — returned untyped. */ export declare const listBrandKits: (session: AgentsSession) => Promise;