import type { BatchCreateLogsArgs, ListLogsArgs, ListLogsResponse } from '@mastra/core/storage';
import type { DuckDBConnection } from '../../db/index.js';
/** Insert multiple log events in a single statement. */
export declare function batchCreateLogs(db: DuckDBConnection, args: BatchCreateLogsArgs): Promise<void>;
/** Query log events with filtering, ordering, and pagination. */
export declare function listLogs(db: DuckDBConnection, args: ListLogsArgs): Promise<ListLogsResponse>;
//# sourceMappingURL=logs.d.ts.map