import type { Client } from '@libsql/client'; import type { AILog, CreateAILogInput } from '../../types.js'; /** * Create a new AI log record. */ export declare function createAILog(client: Client, data: CreateAILogInput): Promise; export interface GetAILogsOptions { since?: string; limit?: number; } /** * Get AI logs for a specific task, ordered by created_at ascending. * Supports optional `since` timestamp filter and result `limit`. */ export declare function getAILogsByTaskId(client: Client, taskId: string, opts?: GetAILogsOptions): Promise; //# sourceMappingURL=ai-logs.d.ts.map