import type { Client } from '@libsql/client'; import type { ExportedTask, ExportTasksParams } from '../../types.js'; /** * Export a single task with its admin notes and attachments (base64-encoded). * Returns null if the task doesn't exist. */ export declare function exportTask(client: Client, id: string): Promise; /** * Export multiple tasks with optional filters. */ export declare function exportTasks(client: Client, params?: ExportTasksParams): Promise; //# sourceMappingURL=export.d.ts.map