import type { HazoConnect } from "../hazo_connect/types.js"; import type { Logger } from "../llm_api/types.js"; /** * Idempotently create the hazo_llm_api_log table + its indexes on the active connection. * Detects dialect from the connect adapter and runs the matching DDL. * * Safe to call on every initialize_llm_api() — if the table exists, this is a no-op. */ export declare function ensure_api_log_table(connect: HazoConnect, logger: Logger): Promise; //# sourceMappingURL=init_api_log.d.ts.map