import type { LogContext } from "./logLevel"; export type SqlAllowListStatus = "allowed" | "denied" | "not verified"; export type SqlCacheStatus = "hit" | "miss" | "ignored" | "evicted"; export type LogSqlContextOptions = { cacheStatus: SqlCacheStatus; allowListStatus: SqlAllowListStatus; method: string; sql: string; context?: LogContext; }; export default function logSql(options: LogSqlContextOptions): void;