import type { LibSQLDatabase } from "drizzle-orm/libsql"; import type { AttributeParams, TraceFormatSpans } from "./type.ts"; export declare const isBlocklet: boolean; export declare const updateStatusByIds: (db: LibSQLDatabase, ids: string[], status: { code: number; message?: string; }) => Promise; export declare const insertTrace: (db: LibSQLDatabase, trace: TraceFormatSpans) => Promise; export declare const updateTrace: (db: LibSQLDatabase, id: string, data: AttributeParams) => Promise;