import { Databases } from "node-appwrite"; import type { DatabaseAdapter } from "appwrite-utils-helpers"; /** * Transfers all documents from one collection to another in a different database * within the same Appwrite Project */ export declare const transferDocumentsBetweenDbsLocalToLocal: (db: Databases | DatabaseAdapter, fromDbId: string, toDbId: string, fromCollId: string, toCollId: string) => Promise; export declare const transferDocumentsBetweenDbsLocalToRemote: (localDb: Databases | DatabaseAdapter, endpoint: string, projectId: string, apiKey: string, fromDbId: string, toDbId: string, fromCollId: string, toCollId: string) => Promise;