import { controllerResponse, transactionOperation } from "../../types";
/**
 * Perform a transaction with a series of database operations.
 * @param operations Array of transaction operations
 * @returns Controller response indicating success or failure and any relevant message
 */
export declare function performTransaction(operations: transactionOperation[]): Promise<controllerResponse>;
