import { mongodb } from '@unchainedshop/mongodb';
import { type TimestampFields } from '@unchainedshop/mongodb';
export type CryptopayTransaction = {
    _id: string;
    blockHeight: number;
    mostRecentBlockHeight: number;
    amount: mongodb.Decimal128;
    currencyCode: string;
    decimals: number;
    orderPaymentId?: string;
} & TimestampFields;
export declare const CryptopayTransactionsCollection: (db: mongodb.Db) => mongodb.Collection<CryptopayTransaction>;
