import { Authorization, Capture, Refund, Void } from '@commercelayer/sdk'; /** * Check if the transaction is an async capture * We assume that async pending captures are those * that are not succeeded and have no message or error code. */ export declare function orderTransactionIsAnAsyncCapture(transaction: Authorization | Void | Capture | Refund): boolean;