import { User } from './user.entity'; import { SalePoint } from './sale-point.entity'; import { Currency } from './currency.entity'; export declare class Stock { id: number; amount: number; partnerId?: string; salePointId?: string; currency: Currency; partner: User; salePoint: SalePoint; disabledAt: Date; }