/** * Native SQLite log verbosity — mirrors Transistorsoft LogLevel semantics. * * Higher values include more detail. `Off` disables persistence entirely. */ export declare const LogLevel: { readonly Off: 0; readonly Error: 1; readonly Warning: 2; readonly Info: 3; readonly Debug: 4; readonly Verbose: 5; }; export type LogLevelValue = (typeof LogLevel)[keyof typeof LogLevel]; export declare function logLevelFromString(level: string): LogLevelValue; export declare function shouldPersistLog(messageLevel: LogLevelValue, configured: LogLevelValue): boolean; //# sourceMappingURL=LogLevel.d.ts.map