import { mongodb } from '@unchainedshop/mongodb';
declare const configureSaferpayTransactionsModule: ({ db }: {
    db: mongodb.Db;
}) => Promise<{
    findTransactionById: (_id: mongodb.ObjectId) => Promise<mongodb.WithId<import("./db/SaferpayTransactionsCollection.ts").SaferpayTransaction> | null>;
    createTransaction: (orderPaymentId: any) => Promise<mongodb.BSON.ObjectId>;
    setToken: (_id: mongodb.ObjectId, token: string) => Promise<void>;
}>;
declare const _default: {
    saferpayTransactions: {
        configure: ({ db }: {
            db: mongodb.Db;
        }) => Promise<{
            findTransactionById: (_id: mongodb.ObjectId) => Promise<mongodb.WithId<import("./db/SaferpayTransactionsCollection.ts").SaferpayTransaction> | null>;
            createTransaction: (orderPaymentId: any) => Promise<mongodb.BSON.ObjectId>;
            setToken: (_id: mongodb.ObjectId, token: string) => Promise<void>;
        }>;
    };
};
export default _default;
export interface SaferpayTransactionsModule {
    saferpayTransactions: Awaited<ReturnType<typeof configureSaferpayTransactionsModule>>;
}
