import type { Code } from "../modules/CommonProtocolSpecification/Code.ta.mjs"; /** * @summary Determine whether an operation is a modification operation * @description * * Determine whether an operation is a modification operation as opposed to an * operation that only reads values. (In some cases, these reads can have * auxiliary effects like changing some operational attributes, but they should * not have an effect on user attributes.) * * @param {Code} operationType The operation code of the operation * @returns {Boolean} `true` if the operation is a modification operation * @function */ export declare function isModificationOperation(operationType: Code): boolean; export default isModificationOperation; //# sourceMappingURL=isModificationOperation.d.mts.map