import { TransactionType } from '../entities/budget-category.entity';
import { Currency } from '../../currencies/currency.enum';
export declare class CreateTransactionDto {
    amount: number;
    currency?: Currency;
    type: TransactionType;
    description?: string;
    date: Date;
    categoryId: number;
}
