import { Model } from 'sequelize-typescript';
import { StockInventory } from './stock-inventory.entity';
export declare class StockPrice extends Model {
    InventoryId: string;
    Currency: string;
    RetailPrice: number;
    BasePrice: number;
    StaffPrice: number;
    LabourCharges: number;
    PriceIndicator: string;
    CreatedById: string;
    CreatedAt: Date;
    UpdatedById: string;
    UpdatedAt: Date;
    StockInventory: StockInventory;
}
