import Database from "better-sqlite3"; export declare function getArchiveDbPath(workspace: string, orgSlug: string): string; export type ArchiveDb = Database.Database; export declare function openArchive(workspace: string, orgSlug: string): ArchiveDb; export declare const ALLOWED_EVENT_TYPES: readonly ["routine_log", "route_hit", "route_miss", "author_turn", "spawn_decision"]; export type EventType = (typeof ALLOWED_EVENT_TYPES)[number]; export declare function isEventType(value: string): value is EventType;