import * as IShared from '../../../shared/interface'; export declare const Route = "inventario"; export declare const UpperName = "Inventario"; export declare const LowerName: string; export interface ICreateInventoryRequest { product_id: string; registered_quantity: number; inventory_quantity: number; note?: string; created_by?: string; updated_by?: string; } export interface IRepository { createInventory(data: ICreateInventoryRequest): Promise; createManyInventory(data: ICreateInventoryRequest[]): Promise; } export type IController = IShared.IEntityWithUserToken;