import { mongodb } from '@unchainedshop/mongodb';
export declare const configureSaferpayTransactionsModule: ({ db }: {
    db: mongodb.Db;
}) => Promise<{
    findTransactionById: (_id: mongodb.ObjectId) => Promise<mongodb.WithId<import("../db/SaferpayTransactionsCollection.js").SaferpayTransaction>>;
    createTransaction: (orderPaymentId: any) => Promise<mongodb.BSON.ObjectId>;
    setToken: (_id: mongodb.ObjectId, token: string) => Promise<void>;
}>;
export type SaferpayTransactionsModule = Awaited<ReturnType<typeof configureSaferpayTransactionsModule>>;
//# sourceMappingURL=configureSaferpayTransactionsModule.d.ts.map