///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
import { Schema } from "mongoose";
export declare class StockQuantity {
stockCode: string;
quantity: number;
constructor(stockCode: string, quantity: number);
}
export declare const StockQuantitySchema: Schema & StockQuantity & {
_id: import("mongoose").Types.ObjectId;
}, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, StockQuantity, import("mongoose").Document> & import("mongoose").FlatRecord & {
_id: import("mongoose").Types.ObjectId;
}>;
export declare const StockQuantityModel: import("mongoose").Model & StockQuantity & {
_id: import("mongoose").Types.ObjectId;
}, any>;