import { Request, Response } from 'express';
export declare const getInventory: (req: Request, res: Response) => Promise<void>;
export declare const createInventoryItem: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const stockIn: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const stockOut: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const deleteInventoryItem: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const getInventoryHistory: (req: Request, res: Response) => Promise<void>;
//# sourceMappingURL=inventory.controller.d.ts.map