import { Either } from "purify-ts"; import { TransactionDetail } from "./process-text/process-text"; export declare function verify(request: { transactionId: string; accountNumberOfSenderOrReceiver: string; cbeVerificationUrl: string; }): Promise>; export type VerifyFailure = { type: 'INVALID_TRANSACTION_ID'; } | { type: 'INVALID_ACCOUNT_NO'; } | { type: 'TRANSACTION_NOT_FOUND'; } | { type: 'API_REQUEST_FAILED'; message: string; }; //# sourceMappingURL=verify.d.ts.map