import type { Databases, Models } from "node-appwrite"; import type { OperationCreate } from "../storage/schemas.js"; /** * Legacy operation logger - deprecated * This function is maintained for backward compatibility but no longer performs any logging. * The operations table system has been refactored to use the dynamic adapter pattern. * * @deprecated This function will be removed in a future version */ export declare const logOperation: (db: Databases, dbId: string, operationDetails: OperationCreate, operationId?: string) => Promise;