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