export declare class MarketPurchase {
    id: number;
    itemId: number;
    buyerId: string;
    amount: number;
    totalPrice: number;
    status: 'hold' | 'completed' | 'cancelled';
    channelId: string | null;
    createdAt: Date;
}
//# sourceMappingURL=MarketPurchase.d.ts.map