import { TransactionType } from './transaction.dto'; export declare class CreateTransactionDto { userId: string; type: TransactionType; amount: number; currency: string; description: string; referenceId?: string; }