export declare const PORTFOLIO_TRANSACTION_TYPES: readonly ["buy", "sell", "deposit", "withdrawal", "order-buy", "order-sell"];
export declare class CreatePortfolioTransactionDto {
    type: (typeof PORTFOLIO_TRANSACTION_TYPES)[number];
    date: string;
    asset?: string;
    qty?: string | null;
    price?: string | null;
    currency?: string;
    feeQty?: string | null;
    feeAsset?: string;
    cashAmount?: string | null;
    cashCurrency?: string;
    note?: string;
}
declare const UpdatePortfolioTransactionDto_base: import("@nestjs/mapped-types").MappedType<Partial<CreatePortfolioTransactionDto>>;
export declare class UpdatePortfolioTransactionDto extends UpdatePortfolioTransactionDto_base {
    version: number;
}
export {};
