export interface AutomationActionItem { id: string; name: string; path: string; scope: "personal" | "organization"; triggerType: "event" | "schedule"; event: string | null; schedule: string | null; scheduleDescription: string | null; condition: string | null; body: string; enabled: boolean; lastRun: string | null; lastStatus: string | null; lastError: string | null; nextRun: string | null; createdBy: string | null; canUpdate: boolean; } declare const _default: import("../../action.js").ActionDefinition<{ scope?: "organization" | "personal"; }, AutomationActionItem[]>; export default _default; //# sourceMappingURL=list-automations.d.ts.map