import type { Client } from '@libsql/client'; import type { Attachment, CreateAttachmentInput } from '../../types.js'; /** * Create a new attachment record. */ export declare function createAttachment(client: Client, data: CreateAttachmentInput): Promise; /** * Get a single attachment by ID. */ export declare function getAttachment(client: Client, id: string): Promise; /** * Get all attachments for a given task, ordered by creation time ascending. */ export declare function getAttachmentsByTaskId(client: Client, taskId: string): Promise; //# sourceMappingURL=attachments.d.ts.map