export interface AutomatorListEntry { filePath: string; fileName: string; rid: string | null; name: string | null; archetype: string | null; version: string | null; runtime: string | null; schedule: string | null; transactionMode: string | null; description: string | null; parseError: string | null; } export interface AutomatorListArgs { vault?: string; archetype?: string; vaultPathOverride?: string; } export interface AutomatorListResult { vaultName: string; vaultPath: string; automators: AutomatorListEntry[]; } export declare function listAutomatorsFlow(args?: AutomatorListArgs): Promise; //# sourceMappingURL=automator-list.d.ts.map