import { type AutomatorRunEventLevel } from "../registry/vault-db-repo.js"; export interface AutomatorLogEntry { runIdHex: string; automatorName: string; ts: number; level: AutomatorRunEventLevel; message: string; dataJson: string | null; } export interface AutomatorLogArgs { automator: string; vault?: string; sinceMs?: number; level?: AutomatorRunEventLevel; limit?: number; vaultPathOverride?: string; } export interface AutomatorLogResult { vaultName: string; vaultPath: string; automator: string; events: AutomatorLogEntry[]; } export declare function automatorLogFlow(args: AutomatorLogArgs): Promise; //# sourceMappingURL=automator-log.d.ts.map